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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bf0d;
    --accent-color: #ff6b35;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

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

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

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

.centered {
    text-align: center;
}

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

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

.nav-brand a {
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s;
}

.hero-story {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1542838132-92c53300491e?w=1600&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
}

.hero-overlay {
    width: 100%;
}

.hero-content-narrow {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

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

.hero-subtext {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.story-intro {
    padding: 100px 20px;
    background: var(--light);
}

.story-lead {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--dark);
    font-weight: 500;
}

.story-intro p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
}

.emphasis {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 40px 0;
}

.inline-image {
    margin: 60px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--dark);
    line-height: 1.3;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
}

.split-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

.insight-reveal h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.insight-reveal p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.95;
}

.insight-grid {
    display: flex;
    gap: 30px;
    margin-top: 60px;
}

.insight-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.insight-card p {
    font-size: 1rem;
    opacity: 0.9;
}

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

.testimonial-inline blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 30px;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    color: var(--gray);
}

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

.trust-building h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
}

.process-flow {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
}

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

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

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

.benefits-stacked {
    padding: 100px 20px;
    background: var(--light);
}

.benefits-stacked h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    text-align: center;
}

.benefit-block {
    padding: 60px 40px;
    margin-bottom: 0;
    background: var(--white);
}

.benefit-block.dark {
    background: var(--dark);
    color: var(--white);
}

.benefit-block h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.benefit-block p {
    font-size: 1.2rem;
    line-height: 1.8;
}

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

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

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

.cta-inline {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(44, 95, 45, 0.3);
}

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

.services-reveal h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
    transition: all 0.3s;
}

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

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

.badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

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

.service-card p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.7;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.btn-select {
    width: 100%;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

.urgency-block {
    padding: 80px 20px;
    background: var(--accent-color);
    color: var(--white);
}

.urgency-block h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.urgency-block p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.urgency-note {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    font-size: 1.1rem;
}

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

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

.form-section > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #555;
}

.main-form {
    background: var(--light);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    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(--primary-color);
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-final {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

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

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

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
}

.link-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.link-more:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

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

.footer-content {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-col a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

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

.sticky-btn {
    display: block;
    background: var(--accent-color);
    color: var(--white);
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px var(--shadow);
    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: 30px;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #85a80c;
}

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

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

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

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.content-section {
    padding: 80px 20px;
}

.content-section h2 {
    font-size: 2.2rem;
    margin: 40px 0 20px;
    color: var(--dark);
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #333;
}

.image-block {
    margin: 50px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

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

.values-list {
    margin: 40px 0;
}

.value-item {
    background: var(--light);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item p {
    margin: 0;
    font-size: 1rem;
}

.cta-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin: 60px 0;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--white);
}

.btn-primary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

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

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #333;
}

.service-features {
    list-style: none;
    margin: 30px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1rem;
    color: #555;
}

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 30px 0;
}

.service-detail-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.badge-popular {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

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

.cta-section-alt h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section-alt p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

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

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

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    max-width: 600px;
}

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

.contact-item {
    margin-bottom: 35px;
}

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

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

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

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

.contact-note {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.contact-note p {
    margin: 0;
    font-size: 1rem;
    color: #666;
}

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

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

.map-placeholder {
    background: var(--white);
    padding: 80px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
}

.map-placeholder p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
}

.thanks-section {
    padding: 150px 20px 100px;
    min-height: 70vh;
}

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

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

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

.service-confirmation {
    background: var(--light);
    padding: 20px 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.selected-service {
    font-size: 1.1rem;
    margin: 0;
    color: var(--dark);
}

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

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

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 1.1rem;
    color: #555;
}

.thanks-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

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

.legal-content {
    padding: 80px 20px;
}

.legal-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--dark);
}

.legal-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #333;
}

.legal-content ul {
    margin: 20px 0 20px 25px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.legal-content strong {
    color: var(--dark);
}

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

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

@media (max-width: 768px) {
    .floating-nav {
        width: calc(100% - 40px);
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 4px 20px var(--shadow);
        display: none;
    }

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

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

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

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

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

    .process-flow {
        flex-direction: column;
    }

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

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

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

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

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

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

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

    .main-form {
        padding: 30px 20px;
    }
}

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

    .page-header h1 {
        font-size: 2rem;
    }

    .services-reveal h2,
    .trust-building h2,
    .benefits-stacked h2,
    .cta-section h2 {
        font-size: 2rem;
    }
}