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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.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;
    min-width: 300px;
}

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

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

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
}

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

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

.nav-main a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-main a:hover {
    color: #3498db;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #dfe6e9;
    border-radius: 3px;
    white-space: nowrap;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.intro-asymmetric {
    display: flex;
    padding: 80px 40px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.intro-text {
    flex: 1.3;
}

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

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

.intro-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.services-split {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.section-header-full {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-full h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.section-header-full p {
    font-size: 17px;
    color: #546e7a;
}

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

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

.service-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

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

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    color: #3498db;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.form-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.form-container-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

.form-left {
    flex: 1;
}

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

.form-left p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 30px;
    line-height: 1.7;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0;
    font-size: 16px;
    color: #2c3e50;
    position: relative;
    padding-left: 28px;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 18px;
}

.form-right {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 18px;
    border: 1px solid #dfe6e9;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.trust-indicators {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

.trust-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

.trust-grid {
    display: flex;
    gap: 40px;
}

.trust-item {
    flex: 1;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c3e50;
    font-weight: 700;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

.footer-split {
    background-color: #1a2332;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
    gap: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 700;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    line-height: 1.8;
    color: #b2bec3;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #95a5a6;
    margin-bottom: 20px;
    text-align: left;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
}

.footer-bottom p:last-child {
    font-size: 13px;
    color: #7f8c8d;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 16px;
}

.thanks-container .service-selected {
    font-weight: 600;
    color: #3498db;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-container a:hover {
    background-color: #2980b9;
}

.page-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px;
}

.page-container h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.page-container h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.page-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #546e7a;
}

.page-container ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-container ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 8px;
}

.contact-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 40px;
}

.contact-page h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-item {
    flex: 1;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-info-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 10px;
}

.about-split {
    display: flex;
    padding: 80px 40px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.about-text {
    flex: 1.2;
}

.about-text h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

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

.about-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.values-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.values-grid {
    display: flex;
    gap: 40px;
}

.value-item {
    flex: 1;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 15px;
    }

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

    .nav-main {
        flex-direction: column;
        text-align: center;
    }

    .hero-split {
        flex-direction: column;
    }

    .intro-asymmetric {
        flex-direction: column;
    }

    .service-row,
    .service-row.reverse {
        flex-direction: column;
    }

    .form-container-split {
        flex-direction: column;
    }

    .trust-grid {
        flex-direction: column;
    }

    .footer-main {
        flex-direction: column;
    }

    .contact-info-grid {
        flex-direction: column;
    }

    .about-split {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }
}