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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #27ae60;
    --dark: #1a252f;
    --spacing: 1rem;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing);
}

.narrow-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing);
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.hero-visual {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.8)), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 6rem var(--spacing) 2rem;
}

.hero-overlay {
    color: var(--white);
    max-width: 900px;
}

.hero-overlay h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-hero {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

section {
    padding: 5rem var(--spacing);
}

.story-intro {
    background: var(--white);
}

.story-intro h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.story-intro p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.story-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    margin: 2.5rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.problem-amplify {
    background: var(--light-bg);
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.problem-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.05rem;
}

.problem-list li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.insight-reveal {
    background: var(--primary-color);
    color: var(--white);
}

.insight-reveal h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 1.5rem;
}

.insight-reveal p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.insight-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2.5rem 0;
    border-left: 5px solid var(--accent-color);
}

.insight-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5;
}

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

.sticky-btn {
    background: var(--success-color);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 25px rgba(39, 174, 96, 0.4);
    display: inline-block;
    transition: transform 0.3s;
}

.sticky-btn:hover {
    transform: scale(1.05);
}

.trust-building {
    background: var(--white);
}

.trust-building h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.trust-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-card {
    flex: 1;
    min-width: 250px;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.trust-card:hover {
    transform: translateY(-8px);
}

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

.trust-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.trust-card p {
    font-size: 1rem;
    color: #555;
}

.testimonials-inline {
    background: var(--light-bg);
    padding: 4rem var(--spacing);
}

.testimonial {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.benefits-reveal {
    background: var(--white);
}

.benefits-reveal h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 1rem;
    color: #555;
}

.pricing-reveal {
    background: var(--light-bg);
    padding: 5rem var(--spacing);
}

.pricing-reveal h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.pricing-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #555;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 400px;
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

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

.service-card.premium {
    border: 3px solid var(--success-color);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--success-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: var(--primary-color);
}

.form-section {
    background: var(--white);
    padding: 5rem var(--spacing);
}

.form-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-section > .narrow-content > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    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(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.urgency-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem var(--spacing);
}

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

.urgency-box h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 1.5rem;
}

.urgency-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-urgency {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.cta-urgency:hover {
    transform: scale(1.05);
}

.final-trust {
    background: var(--light-bg);
    padding: 4rem var(--spacing);
    text-align: center;
}

.final-trust h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.final-trust p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #555;
}

.trust-subtitle {
    font-weight: 600;
    color: var(--primary-color);
}

.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem var(--spacing) 2rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    line-height: 1.8;
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 37, 47, 0.98);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

.btn-reject:hover {
    border-color: var(--white);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 8rem var(--spacing) 4rem;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    opacity: 0.95;
}

.about-story,
.about-content {
    padding: 3rem 0;
}

.about-content h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.mission-section {
    background: var(--light-bg);
    padding: 4rem var(--spacing);
}

.mission-section h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.mission-text {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.values-section {
    padding: 5rem var(--spacing);
}

.values-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
}

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

.value-card p {
    font-size: 1rem;
    color: #555;
}

.team-section {
    background: var(--light-bg);
    padding: 5rem var(--spacing);
}

.team-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
}

.expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.expertise-item {
    flex: 1;
    min-width: 300px;
}

.expertise-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.expertise-item ul {
    list-style: none;
}

.expertise-item ul li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
}

.expertise-item ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.approach-section {
    padding: 5rem var(--spacing);
}

.approach-section h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.approach-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.cta-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem var(--spacing);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

.services-detailed {
    padding: 3rem var(--spacing);
}

.service-detail {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-detail.featured-service {
    border: 3px solid var(--success-color);
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--success-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.service-description {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: var(--primary-color);
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

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

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

.service-cta:hover {
    background: var(--primary-color);
}

.service-cta.primary {
    background: var(--success-color);
}

.service-cta.primary:hover {
    background: #229954;
}

.pricing-notes {
    background: var(--light-bg);
    padding: 4rem var(--spacing);
}

.pricing-notes h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.notes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.note-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
}

.note-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.note-item p {
    font-size: 1rem;
    color: #555;
}

.comparison-section {
    padding: 5rem var(--spacing);
}

.comparison-section h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.comparison-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-row {
    display: flex;
    gap: 1rem;
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
}

.comparison-row.header {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.comparison-cell {
    flex: 1;
    min-width: 150px;
}

.faq-section {
    background: var(--light-bg);
    padding: 5rem var(--spacing);
}

.faq-section h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1rem;
    color: #555;
}

.contact-info {
    padding: 4rem var(--spacing);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-card p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 1rem;
}

.contact-options {
    padding: 4rem var(--spacing);
    background: var(--light-bg);
}

.contact-options h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-options > .narrow-content > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.option-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
}

.option-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.option-item p {
    font-size: 1rem;
    color: #555;
}

.areas-served {
    padding: 4rem var(--spacing);
}

.areas-served h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.areas-served > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.area-item {
    flex: 1;
    min-width: 280px;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
}

.area-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.area-item p {
    font-size: 1rem;
    color: #555;
}

.before-contact {
    background: var(--light-bg);
    padding: 4rem var(--spacing);
}

.before-contact h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.before-contact > .narrow-content > p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.checklist {
    list-style: none;
    margin-bottom: 2rem;
}

.checklist li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
}

.checklist li::before {
    content: "□";
    position: absolute;
    left: 0;
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.note-text {
    font-style: italic;
    color: #777;
}

.privacy-note {
    padding: 4rem var(--spacing);
    background: var(--primary-color);
    color: var(--white);
}

.privacy-note h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-note p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.privacy-note a {
    color: var(--secondary-color);
}

.thanks-hero {
    background: linear-gradient(135deg, var(--success-color), #229954);
    color: var(--white);
    padding: 6rem var(--spacing) 3rem;
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.thanks-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    opacity: 0.95;
}

.thanks-content {
    padding: 4rem var(--spacing);
}

.thanks-content h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: start;
}

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

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

.step-content p {
    font-size: 1rem;
    color: #555;
}

.thanks-note {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
}

.thanks-note p {
    font-size: 1rem;
    margin: 0;
}

.thanks-note a {
    color: var(--secondary-color);
}

.selected-service {
    background: var(--light-bg);
    padding: 3rem var(--spacing);
    text-align: center;
}

.selected-service h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-selected {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.while-waiting {
    padding: 4rem var(--spacing);
}

.while-waiting h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.while-waiting > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.resource-card p {
    font-size: 1rem;
    color: #555;
}

.resource-card a {
    color: var(--secondary-color);
    text-decoration: none;
}

.resource-card a:hover {
    text-decoration: underline;
}

.testimonials-thanks {
    background: var(--light-bg);
    padding: 4rem var(--spacing);
}

.testimonials-thanks h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.back-home {
    text-align: center;
    padding: 3rem var(--spacing);
}

.back-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.back-button:hover {
    background: var(--primary-color);
}

.legal-page {
    padding: 6rem var(--spacing) 4rem;
    background: var(--white);
}

.legal-page h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 1rem;
    color: #777;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--primary-color);
}

.legal-page p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.legal-page ul,
.legal-page ol {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

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

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

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--light-bg);
}

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

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

@media (max-width: 768px) {
    .floating-nav {
        padding: 0.8rem 1.5rem;
        gap: 1rem;
        top: 10px;
        width: calc(100% - 2rem);
        left: 1rem;
        transform: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: block;
    }

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

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

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

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem var(--spacing);
    }

    .hero-visual {
        padding: 5rem var(--spacing) 2rem;
    }

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