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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5f7e;
    --accent-color: #4a90b5;
    --dark-bg: #0f2433;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --gradient-primary: linear-gradient(135deg, #1a3a52 0%, #2d5f7e 100%);
}

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

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

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

.main-nav {
    background: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.nav-links {
    display: flex;
    gap: 35px;
}

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

.nav-links a:hover {
    color: var(--accent-color);
}

.hero-section {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 20px;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,58,82,0.95) 0%, rgba(45,95,126,0.9) 100%);
    z-index: 1;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: var(--text-light);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.intro-block {
    padding: 90px 20px;
    background: var(--text-light);
}

.intro-block h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.3;
}

.intro-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.stats-section {
    padding: 70px 20px;
    background: var(--light-bg);
}

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

.stat-card {
    flex: 1 1 280px;
    text-align: center;
    padding: 35px 20px;
    background: var(--text-light);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.stat-card h3 {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-card p {
    font-size: 16px;
    color: var(--text-dark);
}

.dark-bg {
    background: var(--dark-bg);
    color: var(--text-light);
}

.dark-bg h2,
.dark-bg h3 {
    color: var(--text-light);
}

.dark-bg p {
    color: rgba(255,255,255,0.9);
}

.problem-section {
    padding: 100px 20px;
}

.two-col-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.col-text {
    flex: 1 1 450px;
}

.col-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.col-text p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.col-visual {
    flex: 1 1 400px;
}

.visual-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, rgba(74,144,181,0.3) 0%, rgba(45,95,126,0.3) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insight-section {
    padding: 85px 20px;
    background: var(--text-light);
}

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.insight-section p {
    font-size: 18px;
    margin-bottom: 22px;
    line-height: 1.7;
}

.cta-inline {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s;
}

.cta-inline:hover {
    color: var(--secondary-color);
}

.services-section {
    padding: 95px 20px;
    background: var(--light-bg);
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--text-light);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-card.featured {
    border: 3px solid var(--accent-color);
    position: relative;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a5568;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.testimonial-section {
    padding: 80px 20px;
    background: var(--text-light);
}

.testimonial {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
    padding: 40px;
    background: var(--light-bg);
    border-left: 5px solid var(--accent-color);
    border-radius: 8px;
}

.testimonial cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 16px;
    color: #718096;
}

.form-section {
    padding: 90px 20px;
    background: var(--light-bg);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--text-light);
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 35px;
    font-size: 16px;
    color: #4a5568;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    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(--accent-color);
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1 1 200px;
}

.btn-submit {
    padding: 15px 40px;
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.trust-section {
    padding: 90px 20px;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.trust-item {
    flex: 1 1 300px;
    text-align: center;
    padding: 30px 20px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
}

.cta-section {
    padding: 90px 20px;
    background: var(--text-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #4a5568;
}

.cta-large {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(74,144,181,0.3);
}

.cta-large:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74,144,181,0.4);
}

.main-footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 20px 30px;
}

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

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--text-light);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 15px 30px;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(74,144,181,0.4);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 14px;
}

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

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

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

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

.btn-reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.3);
}

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

.page-hero {
    padding: 80px 20px 60px;
    background: var(--gradient-primary);
    text-align: center;
    color: var(--text-light);
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero .lead {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
}

.about-story {
    padding: 90px 20px;
    background: var(--text-light);
}

.about-story h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-story p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-section {
    padding: 90px 20px;
}

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

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

.value-card {
    flex: 1 1 300px;
    padding: 35px 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
}

.team-section {
    padding: 90px 20px;
    background: var(--light-bg);
}

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.team-member {
    flex: 1 1 260px;
    max-width: 300px;
    text-align: center;
    background: var(--text-light);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.member-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    margin: 0 auto 20px;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.member-role {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
}

.mission-section {
    padding: 85px 20px;
    background: var(--text-light);
}

.mission-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.mission-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.certifications-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.certifications-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.cert-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.cert-item {
    flex: 1 1 250px;
    max-width: 350px;
    padding: 20px 25px;
    background: var(--text-light);
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cert-item p {
    font-size: 15px;
    color: var(--text-dark);
    margin: 0;
}

.services-detail-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.service-detail-card {
    background: var(--text-light);
    border-radius: 10px;
    padding: 45px 40px;
    margin-bottom: 35px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.service-detail-card.highlighted {
    border: 3px solid var(--accent-color);
    position: relative;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h2 {
    font-size: 30px;
    color: var(--primary-color);
    flex: 1 1 300px;
}

.price-tag {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
}

.badge {
    position: absolute;
    top: -15px;
    right: 40px;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-content {
    margin-top: 20px;
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #4a5568;
}

.service-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-benefits {
    list-style: none;
    margin-bottom: 20px;
}

.service-benefits li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.5;
}

.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

.process-section {
    padding: 90px 20px;
}

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.process-step {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
}

.cta-services {
    padding: 80px 20px;
    background: var(--text-light);
    text-align: center;
}

.cta-services h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-services p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #4a5568;
}

.contact-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.contact-layout {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    background: var(--text-light);
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 35px;
    color: var(--primary-color);
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.info-block a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.info-block a:hover {
    color: var(--secondary-color);
}

.map-section {
    padding: 70px 20px;
    background: var(--text-light);
}

.map-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 35px;
    color: var(--primary-color);
}

.map-placeholder {
    max-width: 800px;
    margin: 0 auto;
    height: 400px;
    background: var(--light-bg);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
}

.map-placeholder p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.map-note {
    font-size: 14px;
    color: #718096;
}

.faq-section {
    padding: 90px 20px;
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
}

.thanks-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.thanks-content {
    background: var(--text-light);
    padding: 60px 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.checkmark-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--success-color);
    color: var(--text-light);
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
}

.thanks-info {
    margin: 30px 0;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 6px;
}

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

.next-steps {
    margin: 40px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

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

.steps-list li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-light);
}

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

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

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--text-light);
}

.thanks-extra {
    padding: 80px 20px;
}

.thanks-extra h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.tips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.tip-card {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.tip-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.tip-card p {
    font-size: 15px;
    line-height: 1.6;
}

.legal-page {
    padding: 80px 20px;
    background: var(--text-light);
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-update {
    font-size: 14px;
    color: #718096;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

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

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 16px;
}

.legal-page a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-page code {
    background: var(--light-bg);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 14px;
}

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: #718096;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

    .hero-subtitle {
        font-size: 17px;
    }

    .intro-block h2,
    .insight-section h2,
    .about-story h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .two-col-layout {
        gap: 30px;
    }

    .form-wrapper {
        padding: 35px 25px;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .footer-grid {
        gap: 30px;
    }

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

    .service-header {
        flex-direction: column;
    }

    .faq-item {
        flex: 1 1 100%;
    }

    .thanks-content {
        padding: 40px 25px;
    }

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

@media (max-width: 480px) {
    .nav-container {
        height: auto;
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .form-row {
        flex-direction: column;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}