:root {
    --color-primary: #1a365d;
    --color-secondary: #c9a227;
    --color-accent: #2d3748;
    --color-bg-dark: #0f1419;
    --color-bg-light: #f7f5f0;
    --color-bg-cream: #faf8f3;
    --color-bg-navy: #1a2332;
    --color-text-dark: #1a202c;
    --color-text-light: #f7fafc;
    --color-text-muted: #718096;
    --color-border: #e2e8f0;
    --color-success: #38a169;
    --color-gold: #d4af37;
    --color-img-fallback: #2d3748;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', system-ui, sans-serif;
    --max-width: 1200px;
    --max-width-narrow: 720px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.35rem; }

p {
    margin-bottom: 1.25rem;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ad-disclosure-bar {
    background-color: var(--color-bg-navy);
    color: var(--color-text-muted);
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    text-align: center;
}

header {
    background-color: var(--color-bg-dark);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-light);
}

.logo span {
    color: var(--color-gold);
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--color-text-light);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-light);
    margin: 5px 0;
    transition: transform 0.2s ease;
}

.hero-funnel {
    background-color: var(--color-img-fallback);
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-funnel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.92) 0%, rgba(26, 54, 93, 0.85) 100%);
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-text-light);
    padding: 4rem 0;
}

.hero-content h1 {
    font-size: 3.25rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero-content h1 span {
    color: var(--color-gold);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
}

.btn-primary:hover {
    background-color: #e5c03d;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    color: var(--color-bg-dark);
}

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

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

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

.btn-dark:hover {
    background-color: #234e7f;
}

.section {
    padding: 5rem 0;
}

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

.section-cream {
    background-color: var(--color-bg-cream);
}

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

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-title p,
.section-navy .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.story-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.story-block:last-child {
    margin-bottom: 0;
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    margin-bottom: 1.25rem;
}

.story-image {
    flex: 1;
    background-color: var(--color-img-fallback);
    border-radius: 8px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-gold);
}

.problem-card h4 {
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.insight-section {
    position: relative;
}

.insight-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.insight-main {
    flex: 2;
}

.insight-sidebar {
    flex: 1;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 2rem;
    border-radius: 8px;
}

.insight-sidebar h4 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.insight-list {
    list-style: none;
}

.insight-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1.5rem;
    position: relative;
}

.insight-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

.insight-list li:last-child {
    border-bottom: none;
}

.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial {
    display: flex;
    gap: 2rem;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 8px;
}

.testimonial:nth-child(even) {
    flex-direction: row-reverse;
    background-color: rgba(255, 255, 255, 0.06);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-img-fallback);
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-gold);
}

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

.benefit-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background-color: var(--color-bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--color-gold);
}

.benefit-card h4 {
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--color-text-muted);
    margin-bottom: 0;
}

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

.service-item {
    display: flex;
    gap: 2rem;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    width: 300px;
    flex-shrink: 0;
    background-color: var(--color-img-fallback);
}

.service-image img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
}

.service-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

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

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.cta-section {
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.form-section {
    background-color: var(--color-bg-cream);
    padding: 5rem 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.form-container > p {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

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

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

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

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

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit .btn {
    width: 100%;
    padding: 1.125rem 2rem;
    font-size: 1.1rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-dark);
    padding: 1rem;
    z-index: 90;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sticky-cta-text {
    color: var(--color-text-light);
    font-weight: 500;
}

footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 4rem 0 2rem;
}

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

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

.footer-section h4 {
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-section ul a:hover {
    color: var(--color-gold);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.disclaimer {
    background-color: var(--color-bg-navy);
    padding: 2rem 0;
    font-size: 0.85rem;
}

.disclaimer p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.disclaimer p:last-child {
    margin-bottom: 0;
}

.references-section {
    background-color: var(--color-bg-cream);
    padding: 3rem 0;
}

.references-section h3 {
    margin-bottom: 1.5rem;
}

.references-list {
    list-style: none;
}

.references-list li {
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.references-list li::before {
    position: absolute;
    left: 0;
    font-weight: 600;
    color: var(--color-primary);
}

.references-list li:nth-child(1)::before { content: '[1]'; }
.references-list li:nth-child(2)::before { content: '[2]'; }
.references-list li:nth-child(3)::before { content: '[3]'; }
.references-list li:nth-child(4)::before { content: '[4]'; }
.references-list li:nth-child(5)::before { content: '[5]'; }

.references-list a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner p {
    flex: 1;
    margin-bottom: 0;
    min-width: 300px;
}

.cookie-banner p a {
    color: var(--color-gold);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cookie-accept {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
}

.cookie-accept:hover {
    background-color: #e5c03d;
}

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

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

.page-header {
    background-color: var(--color-bg-dark);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.page-content {
    padding: 4rem 0;
}

.page-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

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

.about-intro {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-intro-text {
    flex: 1;
}

.about-intro-image {
    flex: 1;
    background-color: var(--color-img-fallback);
    border-radius: 8px;
    overflow: hidden;
}

.about-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-card h4 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.contact-wrapper {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-detail p {
    margin-bottom: 0;
    color: var(--color-text-muted);
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
}

.thanks-wrapper {
    text-align: center;
    padding: 6rem 0;
}

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

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.thanks-wrapper h1 {
    margin-bottom: 1rem;
}

.thanks-wrapper p {
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.services-hero {
    background-color: var(--color-bg-navy);
    padding: 5rem 0;
}

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

.services-hero-text {
    flex: 1;
    color: var(--color-text-light);
}

.services-hero-text h1 {
    margin-bottom: 1.5rem;
}

.services-hero-text p {
    opacity: 0.85;
}

.services-hero-image {
    flex: 1;
    background-color: var(--color-img-fallback);
    border-radius: 8px;
    overflow: hidden;
}

.services-hero-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.pricing-table {
    margin-top: 4rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    flex: 1 1 300px;
    max-width: 380px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

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

.pricing-card-header {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 1.5rem;
    text-align: center;
}

.pricing-card.featured .pricing-card-header {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
}

.pricing-card-header h3 {
    margin-bottom: 0.5rem;
}

.pricing-card-header .price {
    font-size: 2rem;
    font-weight: 700;
}

.pricing-card-header .price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.pricing-card-body {
    padding: 2rem;
}

.pricing-card-body ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card-body ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
    padding-left: 1.75rem;
    position: relative;
}

.pricing-card-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 600;
}

.pricing-card-body ul li:last-child {
    border-bottom: none;
}

.pricing-card-body .btn {
    width: 100%;
}

@media (max-width: 900px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }

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

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-bg-dark);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }

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

    .main-nav a {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-toggle {
        display: block;
    }

    .story-block,
    .story-block.reverse {
        flex-direction: column;
        gap: 2rem;
    }

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

    .testimonial,
    .testimonial:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-avatar {
        margin: 0 auto;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
    }

    .about-intro {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .services-hero-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .sticky-cta-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 3rem 0;
    }

    .hero-funnel {
        min-height: 70vh;
    }

    .hero-content {
        padding: 2rem 0;
    }

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

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

    .benefit-card,
    .problem-card,
    .value-card {
        flex: 1 1 100%;
    }

    .pricing-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .form-container {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}
