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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

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

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2563eb;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #2563eb;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
}

.hero-card {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-card .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.cta-primary {
    display: inline-block;
    background: #fff;
    color: #667eea;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #667eea;
    color: #fff;
}

.intro-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.intro-cards {
    display: flex;
    gap: 30px;
}

.intro-card {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2563eb;
}

.intro-card p {
    color: #666;
    line-height: 1.7;
}

.problem-section {
    padding: 70px 0;
    background: #fff;
}

.problem-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #1f2937;
}

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

.problem-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4b5563;
    line-height: 1.8;
}

.services-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.services-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-header h3 {
    font-size: 22px;
    color: #1f2937;
    flex: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    white-space: nowrap;
}

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

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #4b5563;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.service-duration {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #1d4ed8;
}

.testimonial-section {
    padding: 70px 0;
    background: #fff;
}

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

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

.testimonial-card {
    flex: 1;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: #1f2937;
    font-size: 16px;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 14px;
}

.approach-section {
    padding: 70px 0;
    background: #f8f9fa;
}

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

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    border-radius: 12px;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.approach-content p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 15px;
    line-height: 1.7;
}

.approach-points {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.approach-point strong {
    display: block;
    font-size: 18px;
    color: #1f2937;
    margin-bottom: 8px;
}

.approach-point p {
    margin: 0;
    font-size: 15px;
}

.form-section {
    padding: 70px 0;
    background: #fff;
}

.form-card {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

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

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

.form-group label {
    font-weight: 600;
    color: #1f2937;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group input[readonly] {
    background: #e5e7eb;
    cursor: not-allowed;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group a {
    color: #2563eb;
}

.btn-submit {
    padding: 16px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1d4ed8;
}

.faq-section {
    padding: 70px 0;
    background: #f8f9fa;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item h3 {
    font-size: 20px;
    color: #1f2937;
    margin-bottom: 12px;
}

.faq-item p {
    color: #4b5563;
    line-height: 1.7;
}

.disclaimer-section {
    padding: 50px 0;
    background: #fff;
}

.disclaimer-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 30px;
    border-radius: 8px;
}

.disclaimer-box h3 {
    font-size: 20px;
    color: #92400e;
    margin-bottom: 15px;
}

.disclaimer-box p {
    color: #78350f;
    line-height: 1.7;
}

.footer {
    background: #1f2937;
    color: #fff;
    padding: 50px 0 20px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 50;
}

.sticky-cta a {
    display: block;
    background: #2563eb;
    color: #fff;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #fff;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 200;
    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 {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

.cookie-content a {
    color: #93c5fd;
}

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

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

.btn-accept {
    background: #10b981;
    color: #fff;
}

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

.btn-reject {
    background: #6b7280;
    color: #fff;
}

.btn-reject:hover {
    background: #4b5563;
}

.page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

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

.page-subtitle {
    font-size: 20px;
    color: #fff;
    opacity: 0.95;
}

.about-content {
    padding: 70px 0;
    background: #fff;
}

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

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.content-text p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.7;
}

.content-image {
    flex: 1;
}

.content-image img {
    width: 100%;
    border-radius: 12px;
}

.mission-section {
    padding: 70px 0;
    background: #f8f9fa;
}

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

.mission-text {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.8;
}

.values-section {
    padding: 70px 0;
    background: #fff;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 22px;
    color: #2563eb;
    margin-bottom: 15px;
}

.value-card p {
    color: #4b5563;
    line-height: 1.7;
}

.team-section {
    padding: 70px 0;
    background: #f8f9fa;
}

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

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

.team-card {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.team-card h3 {
    font-size: 22px;
    color: #1f2937;
    margin-bottom: 8px;
}

.team-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-card p {
    color: #4b5563;
    line-height: 1.7;
}

.stats-section {
    padding: 70px 0;
    background: #fff;
}

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

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

.stat-card {
    flex: 1;
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #6b7280;
}

.cta-about {
    padding: 70px 0;
    background: #f8f9fa;
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.services-detail {
    padding: 70px 0;
    background: #fff;
}

.service-detail-card {
    margin-bottom: 50px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.service-detail-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-detail-header h2 {
    color: #fff;
    font-size: 32px;
}

.price-badge {
    background: #fff;
    color: #667eea;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
}

.service-detail-content {
    display: flex;
    gap: 50px;
    padding: 40px;
}

.service-detail-text {
    flex: 2;
}

.service-lead {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-detail-text h3 {
    font-size: 24px;
    margin: 25px 0 15px;
}

.detail-list {
    list-style: none;
    margin-bottom: 25px;
}

.detail-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #4b5563;
    line-height: 1.6;
}

.detail-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
}

.service-meta {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.service-meta p {
    margin-bottom: 8px;
    color: #4b5563;
}

.btn-select-detail {
    padding: 16px 32px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-detail:hover {
    background: #1d4ed8;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
}

.booking-cta {
    padding: 70px 0;
    background: #f8f9fa;
    text-align: center;
}

.booking-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.booking-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.contact-section {
    padding: 70px 0;
    background: #fff;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 35px;
}

.contact-card {
    margin-bottom: 35px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.contact-card h3 {
    font-size: 20px;
    color: #2563eb;
    margin-bottom: 15px;
}

.contact-detail {
    font-size: 16px;
    color: #1f2937;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
}

.contact-map {
    flex: 1;
}

.contact-map h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    display: block;
}

.map-overlay {
    background: rgba(255,255,255,0.95);
    padding: 25px;
    margin-top: -5px;
}

.map-overlay p {
    margin-bottom: 15px;
    color: #4b5563;
    line-height: 1.6;
}

.map-overlay ul {
    margin-left: 20px;
    color: #4b5563;
}

.contact-faq {
    padding: 70px 0;
    background: #f8f9fa;
}

.contact-faq h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.cta-contact {
    padding: 70px 0;
    background: #fff;
    text-align: center;
}

.cta-contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-contact p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.thanks-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.thanks-card {
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: #fff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 36px;
    color: #1f2937;
    margin-bottom: 20px;
}

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

.thanks-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.thanks-details p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #4b5563;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
}

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

.btn-primary {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #2563eb;
    color: #fff;
}

.thanks-note {
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.thanks-note p {
    color: #6b7280;
    font-size: 15px;
}

.legal-page {
    padding: 60px 0;
    background: #fff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1f2937;
}

.legal-intro {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1f2937;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #374151;
}

.legal-page p {
    color: #4b5563;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    margin-bottom: 10px;
    color: #4b5563;
    line-height: 1.7;
}

.legal-page a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    font-style: italic;
}

@media (max-width: 968px) {
    .hero-card .container {
        flex-direction: column;
    }

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

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

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

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

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

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

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

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

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

    .stats-grid {
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1 1 calc(50% - 15px);
    }

    .service-detail-content {
        flex-direction: column;
    }

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

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 25px);
    }

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

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .sticky-cta a {
        padding: 14px 20px;
        font-size: 14px;
    }

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

    .thanks-card {
        padding: 40px 30px;
    }

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

    .footer-col {
        flex: 1 1 100%;
    }
}