* {
    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: #ffffff;
}

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.main-header {
    background: #1a2332;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #f8f9fa;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

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

.main-nav a:hover {
    color: #4a9eff;
}

.ad-notice {
    font-size: 12px;
    color: #a8b2c1;
    padding: 6px 12px;
    border: 1px solid #3d4f63;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #f8f9fa;
    transition: all 0.3s;
}

.hero-split {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    padding: 80px 30px;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 19px;
    margin-bottom: 35px;
    line-height: 1.7;
    color: #e2e8f0;
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #2d3748;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: #4a9eff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 158, 255, 0.4);
}

.intro-section {
    padding: 90px 30px;
    background: #f7fafc;
}

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

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-image-left,
.split-image-right {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: #cbd5e0;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.split-text-right,
.split-text-left {
    flex: 1;
}

.split-text-right h2,
.split-text-left h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a202c;
}

.split-text-right p,
.split-text-left p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.services-preview {
    padding: 90px 30px;
    background: #ffffff;
}

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

.section-header-center h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

.section-header-center p {
    font-size: 18px;
    color: #718096;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 24px);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0;
    transition: all 0.3s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 100%;
    height: 220px;
    background: #edf2f7;
    margin-bottom: 24px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #2d3748;
    padding: 0 24px;
}

.service-card p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
    padding: 0 24px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 20px;
    padding: 0 24px;
}

.btn-select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
    padding: 14px;
    background: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: #2c5282;
    transform: scale(1.02);
}

.approach-section {
    padding: 90px 30px;
    background: #edf2f7;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #2b6cb0;
    text-decoration: none;
    border: 2px solid #2b6cb0;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    margin-top: 15px;
}

.cta-secondary:hover {
    background: #2b6cb0;
    color: #ffffff;
}

.contact-preview {
    padding: 80px 30px;
    background: linear-gradient(135deg, #2c5282 0%, #1e3a5f 100%);
}

.contact-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.contact-box h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #e2e8f0;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    max-width: 550px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #718096;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #2d3748;
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a202c;
}

.form-display-service {
    background: #edf2f7;
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #2d3748;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #2c5282;
}

.main-footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 60px 30px 30px;
}

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

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #f7fafc;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: #a0aec0;
    line-height: 1.8;
}

.footer-section a {
    display: block;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #4a9eff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #cbd5e0;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #2d3748;
}

.footer-bottom p {
    font-size: 14px;
    color: #718096;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    padding: 25px 30px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1500;
    display: none;
}

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

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

.cookie-content p {
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

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

.btn-accept {
    background: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background: #38a169;
}

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

.btn-reject:hover {
    background: #2d3748;
}

@media (max-width: 1024px) {
    .hero-content,
    .split-container {
        flex-direction: column;
    }

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

    .service-card {
        flex: 0 0 calc(50% - 18px);
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-section {
        flex: 0 0 calc(50% - 25px);
    }
}

.page-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    padding: 70px 30px;
}

.page-hero-simple {
    background: linear-gradient(135deg, #2c5282 0%, #1e3a5f 100%);
    padding: 80px 30px;
}

.hero-text-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.hero-text-centered h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text-centered p {
    font-size: 20px;
    color: #e2e8f0;
}

.content-section {
    padding: 90px 30px;
    background: #ffffff;
}

.content-section-alt {
    padding: 90px 30px;
    background: #f7fafc;
}

.cta-section {
    padding: 80px 30px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
}

.cta-box-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-box-centered h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 18px;
}

.cta-box-centered p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e2e8f0;
}

.services-detailed {
    padding: 60px 30px;
    background: #f7fafc;
}

.service-detail-container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-detail.alternate {
    background: #fafbfc;
}

.service-detail-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-text {
    flex: 1;
}

.service-detail-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.service-detail-text p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2b6cb0;
    margin: 25px 0;
}

.service-detail-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background: #cbd5e0;
}

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

.contact-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px;
}

.contact-split {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.contact-info-section {
    flex: 1;
}

.contact-info-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a202c;
}

.contact-info-section p {
    font-size: 17px;
    margin-bottom: 35px;
    color: #4a5568;
    line-height: 1.8;
}

.contact-detail-item {
    margin-bottom: 30px;
}

.contact-detail-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2d3748;
}

.contact-detail-item p {
    font-size: 16px;
    color: #718096;
    margin-bottom: 8px;
}

.contact-image-section {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: #cbd5e0;
}

.contact-image-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.legal-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 30px;
}

.legal-page-container h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
}

.legal-page-container .last-updated {
    font-size: 14px;
    color: #718096;
    margin-bottom: 40px;
}

.legal-page-container h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #2d3748;
}

.legal-page-container h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 14px;
    color: #2d3748;
}

.legal-page-container p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.8;
}

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

.legal-page-container li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 10px;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 30px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.thanks-icon {
    font-size: 80px;
    color: #48bb78;
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.service-confirmation {
    background: #f0f9ff;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #2b6cb0;
}

.service-confirmation p {
    color: #2d3748;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .service-detail-content,
    .service-detail-content.reverse,
    .contact-split {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #1a2332;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        display: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .main-nav.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text-centered h1 {
        font-size: 36px;
    }

    .service-card {
        flex: 0 0 100%;
    }

    .service-detail {
        padding: 30px 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        flex: 0 0 100%;
    }
}