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

:root {
    --primary-color: #6b46c1;
    --primary-dark: #553c9a;
    --secondary-color: #f59e0b;
    --text-dark: #1a1a2e;
    --text-medium: #4a4a5e;
    --text-light: #7a7a8e;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --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 32px rgba(0, 0, 0, 0.16);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

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

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

.ad-label {
    font-size: 12px;
    color: var(--text-light);
    background-color: var(--bg-light);
    padding: 4px 12px;
    border-radius: 4px;
}

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-section {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.85), rgba(42, 42, 62, 0.75));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 640px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.5;
}

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

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

.intro-cards {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.info-card {
    flex: 1;
    background-color: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.info-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.why-section {
    padding: 80px 0;
}

.why-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.why-section p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-preview {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 56px;
    color: var(--text-dark);
}

.card-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 32px;
}

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

.service-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: var(--primary-dark);
    transform: scale(1.02);
}

.process-section {
    padding: 80px 0;
}

.process-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 56px;
    color: var(--text-dark);
}

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

.process-step {
    flex: 1;
    position: relative;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

.testimonial-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 16px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

.cta-section {
    padding: 80px 0;
    background-color: white;
}

.cta-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-section p {
    font-size: 18px;
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-notice {
    background-color: #fef3c7;
    border-left: 4px solid var(--secondary-color);
    padding: 16px 20px;
    margin-bottom: 24px;
    border-radius: 4px;
    color: var(--text-medium);
    font-size: 15px;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.references-section p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 24px;
}

.references-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
}

.references-section a:hover {
    color: var(--primary-dark);
}

.citations {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.citations h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.citations ol {
    padding-left: 24px;
}

.citations li {
    margin-bottom: 12px;
    color: var(--text-medium);
    line-height: 1.6;
}

.disclaimer-section {
    padding: 60px 0;
}

.disclaimer {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.disclaimer h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.disclaimer p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
}

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

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    color: #b8b8c8;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #b8b8c8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.services-detail {
    padding: 80px 0;
}

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

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

.service-detail-image {
    flex: 0 0 480px;
    height: 360px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 28px 0 16px;
    color: var(--text-dark);
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-content ul {
    padding-left: 24px;
    margin-bottom: 28px;
}

.service-detail-content li {
    margin-bottom: 10px;
    color: var(--text-medium);
    line-height: 1.6;
}

.about-intro {
    padding: 80px 0;
}

.about-intro h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.about-intro p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 56px;
    color: var(--text-dark);
}

.value-card {
    flex: 1;
    background-color: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.about-content-split {
    display: flex;
    gap: 48px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 0 0 480px;
    height: 400px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
}

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

.expertise-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.expertise-section p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.stats-section {
    padding: 80px 0;
}

.stats-grid {
    display: flex;
    gap: 48px;
    justify-content: center;
}

.stat-card {
    text-align: center;
    padding: 40px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-medium);
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    gap: 48px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.contact-detail h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-detail p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-detail .note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

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

.map-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.map-section p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 0;
    background-color: var(--bg-light);
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

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

.thanks-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    margin: 32px 0;
    box-shadow: var(--shadow-sm);
}

.selected-service {
    font-size: 16px;
    color: var(--text-dark);
}

.next-steps {
    margin-top: 32px;
    font-size: 16px;
}

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

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

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

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

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

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

.legal-page h4 {
    font-size: 18px;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.legal-page li {
    margin-bottom: 10px;
    color: var(--text-medium);
    line-height: 1.7;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--primary-dark);
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

@media (max-width: 968px) {
    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-nav.active {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: var(--shadow-md);
        padding: 20px;
    }

    .main-nav.active ul {
        flex-direction: column;
        gap: 16px;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .card-grid-three,
    .process-grid,
    .footer-grid {
        flex-direction: column;
    }

    .card-grid-two {
        grid-template-columns: 1fr;
    }

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

    .service-detail-image,
    .about-image {
        flex: 1;
        width: 100%;
        height: 300px;
    }

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

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

    .stats-grid {
        flex-direction: column;
        gap: 24px;
    }

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

@media (max-width: 640px) {
    .hero-section {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .process-step {
        padding-left: 0;
        padding-top: 70px;
    }

    .step-number {
        left: 50%;
        transform: translateX(-50%);
    }

    .process-step h3,
    .process-step p {
        text-align: center;
    }
}
