/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    font-size: 16px;
    background: #ffffff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #22c55e;
    color: #ffffff;
}

.btn-accept:hover {
    background: #16a34a;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #1a1a1a;
}

/* Hero Split */
.hero-split {
    background: #f9fafb;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.split-left,
.split-right {
    flex: 1;
    padding: 3rem 2rem;
}

.split-left h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Intro Offset Section */
.intro-offset {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-wrap-narrow {
    max-width: 700px;
}

.content-wrap-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.content-wrap-narrow p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
}

.image-offset {
    margin-left: auto;
    max-width: 600px;
}

.image-offset img {
    border-radius: 8px;
}

/* Problem Amplify Section */
.problem-amplify {
    background: #f3f4f6;
    padding: 4rem 2rem;
}

.split-container.reverse {
    flex-direction: column-reverse;
}

.split-right h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.pain-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #374151;
}

.pain-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.insight {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.5rem;
    font-style: italic;
    color: #92400e;
    font-weight: 500;
}

/* Solution Reveal */
.solution-reveal {
    padding: 5rem 2rem;
    text-align: center;
}

.content-centered {
    max-width: 900px;
    margin: 0 auto;
}

.content-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.section-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #6b7280;
}

/* Services Preview */
.services-preview {
    background: #f9fafb;
    padding: 4rem 2rem;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.service-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h4 {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    font-size: 1.3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    padding: 0 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}

.price {
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.link-arrow {
    display: inline-block;
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #2563eb;
    font-weight: 600;
}

.link-arrow:after {
    content: " →";
}

/* Testimonials Inline */
.testimonials-inline {
    padding: 4rem 2rem;
}

.testimonial-bg img {
    border-radius: 8px;
}

.testimonial-content {
    margin-bottom: 2rem;
}

blockquote {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 0.8rem;
    font-style: italic;
}

cite {
    display: block;
    font-style: normal;
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Trust Builder */
.trust-builder {
    background: #f3f4f6;
    padding: 4rem 2rem;
}

.stats-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
}

/* How It Works */
.how-it-works {
    padding: 4rem 2rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.step h5 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #1a1a1a;
}

.step p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* CTA Form Section */
.cta-form-section {
    background: #1e40af;
    padding: 4rem 2rem;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.form-left {
    color: #ffffff;
}

.form-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #dbeafe;
}

.benefits-checklist {
    list-style: none;
}

.benefits-checklist li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #dbeafe;
}

.benefits-checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
    font-size: 1.2rem;
}

.form-right {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Final Push */
.final-push {
    padding: 4rem 2rem;
}

.dark-bg {
    background: #111827;
    color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
}

.dark-bg h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.dark-bg p {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ffffff;
    color: #1a1a1a;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Footer */
.site-footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 3rem 2rem 1rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-col a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #ef4444;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 4rem 2rem;
    color: #ffffff;
    text-align: center;
}

.hero-content-center h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #dbeafe;
}

/* About Story */
.about-story {
    padding: 4rem 2rem;
}

/* Values Section */
.values-section {
    background: #f9fafb;
    padding: 4rem 2rem;
}

.values-grid {
    max-width: 1200px;
    margin: 3rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Team Intro */
.team-intro {
    padding: 4rem 2rem;
    background: #f3f4f6;
}

/* Numbers Impact */
.numbers-impact {
    padding: 4rem 2rem;
}

/* Approach Section */
.approach-section {
    background: #f9fafb;
    padding: 4rem 2rem;
}

.approach-list {
    max-width: 900px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-item {
    background: #ffffff;
    padding: 2rem;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
}

.approach-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.approach-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA About */
.cta-about {
    padding: 4rem 2rem;
}

.cta-box {
    background: #f3f4f6;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.btn-large {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-large:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.cta-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* Services Detail */
.services-detail {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-card {
    margin-bottom: 4rem;
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

.service-detail-card.featured {
    background: #eff6ff;
    border: 2px solid #2563eb;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    margin: 1rem 0;
}

.featured-tag {
    display: inline-block;
    background: #22c55e;
    color: #ffffff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-includes {
    list-style: none;
    margin: 1rem 0;
}

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #374151;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.service-note {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 1rem;
}

.savings {
    background: #dcfce7;
    border: 1px solid #22c55e;
    padding: 1rem;
    border-radius: 4px;
    color: #166534;
    font-weight: 600;
    margin: 1rem 0;
}

.btn-service,
.btn-service-large {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-service-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-service:hover,
.btn-service-large:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    background: #f9fafb;
    padding: 4rem 2rem;
}

.faq-item {
    background: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    border-left: 4px solid #2563eb;
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Order Form Section */
.order-form-section {
    padding: 4rem 2rem;
    background: #1e40af;
}

/* Contact Main */
.contact-main {
    padding: 4rem 2rem;
}

.contact-info {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-block p {
    color: #4b5563;
    line-height: 1.6;
}

.contact-block .note {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-form-wrapper {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.contact-form-wrapper p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Map Section */
.map-section {
    background: #f3f4f6;
    padding: 4rem 2rem;
}

.map-info {
    max-width: 900px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.transport-option {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
}

.transport-option h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.transport-option p {
    color: #6b7280;
}

/* FAQ Contact */
.faq-contact {
    padding: 4rem 2rem;
}

/* CTA Contact */
.cta-contact {
    padding: 4rem 2rem;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 2rem;
    text-align: center;
    background: #f9fafb;
}

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

.success-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
}

.thanks-lead {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.thanks-details {
    background: #dbeafe;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.thanks-details p {
    margin: 0;
    color: #1e40af;
}

.thanks-details strong {
    color: #1e3a8a;
}

/* Next Steps */
.next-steps {
    padding: 4rem 2rem;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.step-marker {
    background: #2563eb;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

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

/* While Waiting */
.while-waiting {
    background: #f9fafb;
    padding: 4rem 2rem;
}

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

.resource-list li {
    margin-bottom: 0.8rem;
}

.resource-list a {
    color: #2563eb;
    font-weight: 500;
}

/* Thanks Guarantee */
.thanks-guarantee {
    padding: 4rem 2rem;
}

.guarantee-grid {
    max-width: 1000px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guarantee-item {
    text-align: center;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
}

.guarantee-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.guarantee-item p {
    color: #6b7280;
}

/* Emergency Contact */
.emergency-contact {
    padding: 4rem 2rem;
}

.email-highlight {
    margin-top: 1rem;
}

.email-highlight a {
    color: #60a5fa;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Legal Page */
.legal-page {
    padding: 4rem 2rem;
    background: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
}

.legal-container .updated {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #374151;
    font-weight: 600;
}

.legal-container p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #4b5563;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
    color: #4b5563;
}

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

/* Desktop Styles */
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger {
        display: none;
    }

    .split-container {
        flex-direction: row;
    }

    .split-container.reverse {
        flex-direction: row-reverse;
    }

    .split-left,
    .split-right {
        padding: 4rem;
    }

    .split-left h1 {
        font-size: 3.5rem;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 280px;
    }

    .stats-row {
        flex-direction: row;
        justify-content: space-around;
    }

    .form-container-split {
        flex-direction: row;
    }

    .form-left,
    .form-right {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 1rem);
        min-width: 280px;
    }

    .map-info {
        flex-direction: row;
    }

    .guarantee-grid {
        flex-direction: row;
    }
}

/* Mobile Menu */
@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid #e5e7eb;
    }

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

    .nav-menu li {
        padding: 0.8rem 2rem;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}
