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

:root {
    --primary-color: #2C5F7C;
    --secondary-color: #4A90A4;
    --accent-color: #7FC8D6;
    --dark-color: #1A3A4A;
    --light-bg: #F8FAFB;
    --white: #FFFFFF;
    --text-dark: #2D3748;
    --text-light: #4A5568;
    --border-color: #E2E8F0;
    --success-color: #48BB78;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

.ad-disclosure {
    background-color: var(--dark-color);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
}

.main-nav {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--border-color);
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.cta-primary:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.intro-cards {
    padding: 80px 24px;
    background-color: var(--white);
}

.card-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.info-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--border-color);
}

.info-card h3 {
    padding: 24px 24px 12px;
    color: var(--dark-color);
    font-size: 22px;
    font-weight: 700;
}

.info-card p {
    padding: 0 24px 24px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.insight-section {
    padding: 80px 24px;
    background-color: var(--light-bg);
}

.insight-section h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 32px;
    text-align: center;
    font-weight: 700;
}

.insight-content p {
    margin-bottom: 24px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
}

.insight-content img {
    width: 100%;
    border-radius: 12px;
    margin: 32px 0;
    box-shadow: var(--shadow-md);
    background-color: var(--border-color);
    object-fit: cover;
}

.services-preview {
    padding: 80px 24px;
    background-color: var(--white);
}

.services-preview h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 48px;
    text-align: center;
    font-weight: 700;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.service-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    flex: 0 1 calc(33.333% - 16px);
    min-width: 280px;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 15px;
    line-height: 1.7;
}

.price {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 20px;
}

.select-service {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
}

.select-service:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.testimonial-section {
    padding: 80px 24px;
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonial-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    font-weight: 700;
}

.testimonials {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 14px;
    opacity: 0.9;
}

.cta-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.form-section {
    padding: 80px 24px;
    background-color: var(--light-bg);
}

.form-section h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 32px;
    text-align: center;
    font-weight: 700;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.btn-submit:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.references-section {
    padding: 60px 24px;
    background-color: var(--light-bg);
}

.references-section h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.references-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
}

.references-list a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    padding: 60px 24px;
    background-color: var(--white);
}

.disclaimer {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    padding: 24px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    font-style: italic;
}

.main-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 24px 24px;
}

.footer-content {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-column ul a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-column ul a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: var(--success-color);
    color: var(--white);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 60px 24px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
}

.legal-content {
    padding: 60px 24px;
    background-color: var(--white);
}

.legal-content h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 32px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-light);
    line-height: 1.7;
}

.about-content {
    padding: 60px 24px;
}

.about-layout {
    display: flex;
    gap: 48px;
}

.about-main {
    flex: 2;
}

.about-main img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-md);
    background-color: var(--border-color);
    object-fit: cover;
}

.about-main h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin: 32px 0 16px;
    font-weight: 700;
}

.about-main p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-sidebar {
    flex: 1;
}

.sidebar-card {
    background-color: var(--light-bg);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.sidebar-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 16px;
    background-color: var(--border-color);
    object-fit: cover;
}

.sidebar-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

.principles-list {
    list-style: none;
    padding: 0;
}

.principles-list li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 14px;
    position: relative;
    padding-left: 24px;
}

.principles-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.services-detail {
    padding: 60px 24px;
}

.service-item {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-info {
    flex: 1;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    background-color: var(--border-color);
    object-fit: cover;
}

.service-info h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.service-info h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.service-info ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.service-info li {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-page {
    padding: 60px 24px;
}

.contact-layout {
    display: flex;
    gap: 48px;
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-block {
    margin-bottom: 32px;
}

.contact-block h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.thanks-section {
    padding: 100px 24px;
    background-color: var(--light-bg);
    min-height: 60vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
    font-weight: 700;
}

.thanks-content h1 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.service-confirmation {
    background-color: var(--white);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.next-steps {
    text-align: left;
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.next-steps h2 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.next-steps ol {
    padding-left: 24px;
}

.next-steps li {
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.8;
    font-size: 16px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        padding: 24px;
        box-shadow: var(--shadow-md);
        transition: left 0.3s;
        gap: 0;
    }

    .nav-menu li {
        margin-bottom: 16px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .services-layout {
        flex-direction: column;
    }

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

    .testimonials {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .contact-layout {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}

sup a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

sup a:hover {
    text-decoration: underline;
}
