* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

a {
    color: #2980b9;
    text-decoration: none;
}

a:hover {
    color: #1a5276;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #229954;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    flex: 1;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.logo a {
    color: #2c3e50;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 28px;
}

.main-nav a {
    color: #34495e;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #2980b9;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-image-side {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

.hero-image-side img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.hero-content-side h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-content-side p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2980b9;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1a5276;
}

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-text-side {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.intro-text-side h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.intro-text-side p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.intro-visual-side {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

.intro-visual-side img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-intro {
    text-align: center;
    padding: 70px 60px 40px;
    background-color: #f8f9fa;
}

.services-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.service-cards-split {
    background-color: #f8f9fa;
    padding: 0 0 80px;
}

.service-card {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 50px;
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.service-image {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
    min-height: 300px;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    display: inline-block;
    padding: 14px 28px;
    background-color: #2980b9;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #1a5276;
}

.form-section-split {
    display: flex;
    min-height: 600px;
}

.form-visual {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

.form-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.form-container {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

#selected-service-display {
    font-size: 16px;
    margin-bottom: 30px;
    padding: 16px;
    background-color: #ecf0f1;
    border-radius: 6px;
    color: #34495e;
}

#selected-service-display.has-selection {
    background-color: #d5f4e6;
    color: #27ae60;
    font-weight: 600;
}

.service-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2980b9;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
}

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.trust-section {
    padding: 80px 60px;
    background-color: #34495e;
    color: #ffffff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #ffffff;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: #bdc3c7;
}

.disclaimer-section {
    padding: 50px 60px;
    background-color: #ecf0f1;
}

.disclaimer-section p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #5a6c7d;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 60px 60px 40px;
    background-color: #2c3e50;
    color: #ecf0f1;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #bdc3c7;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.page-hero-split {
    display: flex;
    min-height: 400px;
}

.page-hero-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #34495e;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #bdc3c7;
}

.page-hero-image {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-content-split {
    display: flex;
    padding: 80px 60px;
}

.about-text {
    flex: 1;
    padding-right: 50px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.about-image {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
    border-radius: 8px;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.method-section-split {
    display: flex;
}

.method-visual {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

.method-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.method-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.method-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.method-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.references-section {
    padding: 60px 60px;
    background-color: #ecf0f1;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.references-list {
    max-width: 1000px;
    font-size: 14px;
    line-height: 1.8;
    color: #5a6c7d;
}

.references-list li {
    margin-bottom: 12px;
}

.services-detail-section {
    padding: 60px 60px 80px;
}

.service-detail-card {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 60px;
    gap: 60px;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
    border-radius: 8px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.price-highlight {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.service-features {
    margin-bottom: 28px;
    padding-left: 20px;
}

.service-features li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #5a6c7d;
}

.btn-service-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2980b9;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-service-cta:hover {
    background-color: #1a5276;
}

.service-info-section {
    padding: 60px 60px;
    background-color: #f8f9fa;
}

.service-info-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.info-split {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-block {
    flex: 1;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-split-section {
    display: flex;
    min-height: 700px;
}

.contact-info-side {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.contact-info-side h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info-side p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #5a6c7d;
}

.contact-detail-block {
    margin-bottom: 36px;
}

.contact-detail-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-detail-block p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #5a6c7d;
}

.emergency-note {
    font-size: 14px;
    font-style: italic;
    color: #7f8c8d;
}

.contact-visual-side {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

.contact-visual-side img {
    width: 100%;
    height: 100%;
    display: block;
}

.response-info-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.response-info-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.response-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.response-item {
    flex: 1;
}

.response-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.response-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.thanks-section {
    display: flex;
    min-height: 600px;
}

.thanks-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #5a6c7d;
}

.service-confirmation {
    margin-bottom: 30px;
}

.selected-service-info {
    font-size: 16px;
    padding: 16px;
    background-color: #d5f4e6;
    border-radius: 6px;
    color: #27ae60;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.steps-list {
    padding-left: 24px;
}

.steps-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #5a6c7d;
}

.thanks-actions {
    display: flex;
    gap: 16px;
}

.btn-primary {
    padding: 14px 32px;
    background-color: #2980b9;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a5276;
}

.btn-secondary {
    padding: 14px 32px;
    background-color: transparent;
    color: #2980b9;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #2980b9;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2980b9;
    color: #ffffff;
}

.thanks-visual {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #5a6c7d;
}

.legal-content a {
    color: #2980b9;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #1a5276;
}

@media (max-width: 968px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }

    .header-right {
        flex-direction: column;
        gap: 15px;
    }

    .hero-split,
    .intro-split,
    .form-section-split,
    .page-hero-split,
    .about-content-split,
    .method-section-split,
    .contact-split-section,
    .thanks-section {
        flex-direction: column;
    }

    .service-card,
    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

    .hero-content-side h1,
    .page-hero-content h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .footer-split {
        flex-direction: column;
        gap: 30px;
    }

    .trust-stats,
    .values-grid,
    .info-split,
    .response-grid {
        flex-direction: column;
    }
}