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

:root {
    --primary-color: #2c5f4f;
    --primary-dark: #1a3d30;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #777;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --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: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.hidden {
    display: none !important;
}

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

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

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

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

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

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

.nav-menu a {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
}

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

.hero-immersive {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c5f4f 0%, #1a3d30 100%);
    overflow: hidden;
}

.hero-immersive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1600494448655-e4d1f6d3f903?w=1600');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(26, 61, 48, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

.cta-hero {
    display: inline-block;
    padding: 18px 48px;
    background: var(--accent-color);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 165, 116, 0.3);
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 165, 116, 0.4);
    background: #e0b585;
    color: var(--text-dark);
}

.intro-narrow {
    padding: 80px 20px;
    background: var(--bg-white);
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 24px;
    font-weight: 500;
}

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

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

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

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 28px;
    color: var(--primary-dark);
    line-height: 1.2;
}

.split-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.highlight-text {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.15rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    margin-top: 28px;
}

.insight-reveal {
    padding: 100px 20px;
    background: var(--bg-white);
}

.section-title-center {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.intro-paragraph {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 680px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.phase-cards {
    display: flex;
    gap: 32px;
    margin-top: 60px;
}

.phase-card {
    flex: 1;
    padding: 40px 32px;
    background: var(--bg-light);
    border-radius: 12px;
    border-top: 4px solid var(--accent-color);
}

.phase-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 16px;
    opacity: 0.7;
}

.phase-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.phase-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.story-section {
    padding: 100px 20px;
    background: var(--primary-dark);
    color: white;
}

.story-content {
    flex: 1.2;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 28px;
}

.story-content p {
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.92;
}

.story-image {
    flex: 1;
    margin-top: 40px;
}

.story-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.trust-building {
    padding: 100px 20px;
    background: var(--bg-white);
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.trust-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.trust-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.trust-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

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

.testimonial-large {
    font-size: 1.4rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-medium);
    border-left: 5px solid var(--accent-color);
    padding-left: 40px;
    margin: 0;
}

.testimonial-large cite {
    display: block;
    margin-top: 24px;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.cta-mid {
    padding: 80px 20px;
    background: var(--bg-white);
}

.cta-box {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    color: white;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-cta-large {
    display: inline-block;
    padding: 16px 48px;
    background: var(--accent-color);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 165, 116, 0.4);
    background: #e0b585;
    color: var(--text-dark);
}

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

.services-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 60px;
}

.service-featured {
    flex: 1 1 100%;
    background: white;
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--accent-color);
    position: relative;
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 40px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.service-featured h3,
.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
    font-size: 0.98rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

.btn-select-service:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.urgency-section {
    padding: 60px 20px;
    background: var(--bg-white);
}

.urgency-box {
    text-align: center;
    padding: 40px;
    background: #fff3e0;
    border-left: 5px solid var(--accent-color);
    border-radius: 8px;
}

.urgency-box h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.urgency-box p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.urgency-highlight {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.15rem;
}

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

.form-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 48px;
}

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

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

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

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

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

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

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

.final-cta {
    padding: 80px 20px;
    background: var(--bg-white);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.final-cta p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 14px 40px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 20px 30px;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--accent-color);
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

.sticky-cta-btn {
    display: block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: var(--text-dark);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 28px rgba(212, 165, 116, 0.5);
    background: #e0b585;
    color: var(--text-dark);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 61, 48, 0.97);
    backdrop-filter: blur(10px);
    padding: 24px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    color: white;
    font-size: 0.95rem;
    flex: 1;
}

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

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

.btn-cookie-accept {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-cookie-accept:hover {
    background: #e0b585;
}

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

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

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

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

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

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

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

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 32px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

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

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

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

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

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

.approach-section h2 {
    font-size: 2rem;
    margin-bottom: 48px;
    color: var(--primary-dark);
    text-align: center;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.approach-step {
    padding: 32px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.approach-step h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.approach-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

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

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

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

.contact-info-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 260px;
    padding: 32px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-info-card h2 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.contact-info-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 12px;
}

.contact-message-section {
    padding: 60px 20px;
    background: var(--bg-white);
}

.contact-message-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.contact-message-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 16px;
}

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

.location-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

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

.thanks-hero {
    padding: 100px 20px;
    background: var(--bg-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

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

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

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.thanks-details {
    background: white;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 48px;
}

.service-confirmation {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.service-confirmation span {
    font-weight: 700;
    color: var(--primary-color);
}

.thanks-next-steps {
    margin: 60px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
}

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

.btn-primary {
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 14px 32px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-resources {
    padding: 80px 20px;
    background: var(--bg-white);
}

.thanks-resources h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.resource-cards {
    display: flex;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.resource-card {
    flex: 1;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

.resource-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.resource-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.resource-card a {
    font-weight: 600;
    color: var(--primary-color);
}

.page-hero-legal {
    padding: 80px 20px 40px;
    background: var(--primary-dark);
    color: white;
    text-align: center;
}

.page-hero-legal h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.legal-date {
    font-size: 0.95rem;
    opacity: 0.8;
}

.legal-content {
    padding: 80px 20px;
    background: var(--bg-white);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
}

.cookie-table thead {
    background: var(--bg-light);
}

.cookie-table th,
.cookie-table td {
    padding: 14px;
    text-align: left;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.cookie-table th {
    font-weight: 600;
    color: var(--primary-dark);
}

.cookie-table td {
    color: var(--text-medium);
}

.services-detail {
    padding: 60px 20px;
    background: var(--bg-white);
}

.service-detail-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
    overflow: hidden;
}

.service-detail-header {
    background: var(--bg-light);
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: var(--primary-dark);
}

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.service-detail-content {
    padding: 40px;
}

.service-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.features-list {
    list-style: none;
    margin-bottom: 24px;
}

.features-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.6;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

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

.comparison-help {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 48px;
}

.help-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 260px;
    padding: 28px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.help-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.help-card p {
    font-size: 1rem;
    color: var(--text-medium);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 16px 40px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .phase-cards {
        flex-direction: column;
    }

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

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

    .service-card {
        min-width: 100%;
    }

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

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

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

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

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

    .thanks-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .resource-cards {
        flex-direction: column;
    }

    .service-detail-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

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

    .comparison-help {
        flex-direction: column;
    }

    .contact-form {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-title-center {
        font-size: 1.8rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }
}