/* ============================================
   Pricing Page - Exact styling from reference
   ============================================ */

/* Hero - Light blue gradient background */
.pricing-hero {
    background: linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 100%);
    padding: 80px 0 40px;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.pricing-hero p {
    color: #64748b;
    font-size: 0.9375rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Main Pricing Box */
.main-pricing {
    padding: 40px 0;
}


.pricing-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Much lighter overlay - image clearly visible */
.blue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Light blue tint only - 40% opacity */
    background: rgba(59, 130, 246, 0.40);
    
    /* Even lighter option: */
    /* background: rgba(59, 130, 246, 0.25); */
    
    /* Or try a subtle gradient: */
    /* background: linear-gradient(135deg, rgba(59, 130, 246, 0.50) 0%, rgba(37, 99, 235, 0.30) 100%); */
}

.pricing-hero .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 80px 24px;
}

.pricing-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4); /* Stronger shadow for readability */
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.pricing-hero p {
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3); /* Text shadow for readability */
}

@media (max-width: 768px) {
    .pricing-hero {
        min-height: 350px;
    }
    
    .pricing-hero h1 {
        font-size: 2.25rem;
    }
    
    .pricing-hero p {
        font-size: 1.1rem;
    }
}


.price-box {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.price-display {
    margin-bottom: 8px;
}

.dollar {
    font-size: 1.5rem;
    color: #0f172a;
    vertical-align: top;
    line-height: 1;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}

.per-hour {
    display: block;
    color: #64748b;
    font-size: 0.875rem;
    margin-top: 4px;
}

.price-note {
    color: #94a3b8;
    font-size: 0.8125rem;
    margin-bottom: 32px;
}

.features-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 32px;
    padding: 24px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.feature {
    text-align: center;
    max-width: 150px;
}

.feature svg {
    color: #3b82f6;
    margin-bottom: 8px;
}

.feature h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.feature p {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* Compare Section */
.compare-section {
    padding: 60px 0;
    text-align: center;
}

.compare-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.compare-section > p {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 40px;
}

.compare-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.compare-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px 24px;
    width: 280px;
    text-align: center;
}

.compare-card h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.price-high {
    color: #dc2626;
    font-size: 1.5rem;
    font-weight: 700;
}

.price-low {
    color: #059669;
    font-size: 2rem;
    font-weight: 700;
}

.period {
    color: #94a3b8;
    font-size: 0.75rem;
    margin-bottom: 16px;
}

.compare-card ul {
    list-style: disc;
    text-align: left;
    padding-left: 20px;
}

.compare-card li {
    color: #64748b;
    font-size: 0.75rem;
    padding: 4px 0;
}

.compare-card.best {
    border-color: #3b82f6;
    position: relative;
}

.badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
}

.positive li {
    color: #059669;
}

/* ============================================
   What's Included Section - Exact Match
   ============================================ */

.included-section {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.included-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.included-section > p {
    color: #64748b;
    font-size: 0.9375rem;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* Services Grid - 4 columns */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.08);
}

/* Service Icons - Light colored backgrounds */
.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

/* Light pastel backgrounds with colored icons */
.service-icon.blue {
    background: #dbeafe;
    color: #3b82f6;
}

.service-icon.green {
    background: #d1fae5;
    color: #10b981;
}

.service-icon.purple {
    background: #ede9fe;
    color: #8b5cf6;
}

.service-icon.orange {
    background: #ffedd5;
    color: #f97316;
}

.service-icon.pink {
    background: #fce7f3;
    color: #ec4899;
}

.service-icon.indigo {
    background: #e0e7ff;
    color: #6366f1;
}

.service-icon.yellow {
    background: #fef3c7;
    color: #eab308;
}

.service-icon.teal {
    background: #ccfbf1;
    color: #14b8a6;
}

.service-item h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.service-item p {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Payment Section - White Background */
.payment-section {
    padding: 60px 0;
    text-align: center;
    background: white;
}

.payment-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.payment-section > p {
    color: #64748b;
    font-size: 0.9375rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Payment Methods Container */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    align-items: stretch;
}

/* Payment Method Cards - Equal Height */
.payment-method {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    width: 320px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Payment Icons - Brand colors with depth */
.payment-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* Stripe - Purple/Blue */
.payment-icon.stripe {
    background: linear-gradient(135deg, #635bff 0%, #8b5cf6 100%);
}

/* Wise - Teal/Green */
.payment-icon.wise {
    background: linear-gradient(135deg, #00b9ff 0%, #10b981 100%);
}

/* Payoneer - Orange */
.payment-icon.payoneer {
    background: linear-gradient(135deg, #ff4800 0%, #f97316 100%);
}

.payment-icon svg {
    stroke-width: 2;
    color: white;
    width: 28px;
    height: 28px;
}

/* Hover effect */
.payment-method:hover .payment-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Payment Method Title */
.payment-method h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

/* Payment Method Description */
.payment-method > p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    min-height: 60px;
}

/* Payment Features List */
.payment-method ul {
    list-style: none;
    padding: 0;
    width: 100%;
    text-align: center;
}

.payment-method li {
    font-size: 0.8125rem;
    color: #475569;
    padding: 6px 0;
    position: relative;
}

.payment-method li::before {
    content: '•';
    color: #94a3b8;
    margin-right: 8px;
}

/* Payment Terms */
.payment-terms {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.payment-terms h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 24px;
}

.terms-row {
    display: flex;
    gap: 48px;
    justify-content: center;
}

.term {
    flex: 1;
    max-width: 280px;
}

.term h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.term p {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .payment-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-method {
        width: 100%;
        max-width: 400px;
    }
    
    .terms-row {
        flex-direction: column;
        gap: 24px;
    }
}

/* ============================================
   CTA Section - MATCHES PROCESS.HTML EXACTLY
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 50%, #6366f1 100%);
    padding: 100px 24px;
    text-align: center;
    position: relative;
}

.cta-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 8px;
}

.cta-subline {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 32px !important;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-yellow {
    background: #f59e0b;
    color: #1e293b;
    border-color: #f59e0b;
}

.btn-yellow:hover {
    background: #fbbf24;
    border-color: #fbbf24;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Footer - MATCHES PROCESS.HTML EXACTLY
   ============================================ */
.footer {
    background: #0f172a;
    padding: 80px 24px 40px;
    color: #94a3b8;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand .logo span {
    color: #3b82f6;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
    max-width: 280px;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: #3b82f6;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    z-index: 100;
}

.scroll-top:hover {
    background: #2563eb;
    transform: translateY(-4px);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-image {
        display: none;
    }

    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 32px;
        max-width: 600px;
    }

    .services-grid,
    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: none;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        display: flex;
    }

    .nav-menu.active {
        transform: translateY(0);
    }
    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 80px;
    }
    .hero h1 {
        font-size: 2.25rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .story-image img {
        height: 300px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .services-grid,
    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.875rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }
    .contact-form {
        padding: 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 1.875rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .btn-large {
        padding: 14px 24px;
    }

    .member-photo {
        width: 100px;
        height: 100px;
    }
}

/* ============================================
   Pricing FAQ Section - Modern Accordion Style
   ============================================ */

.pricing-faq {
    padding: 100px 0;
    background: #f8fafc;
}

.pricing-faq .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-faq h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.pricing-faq .section-header p {
    color: #64748b;
    font-size: 1rem;
}

/* FAQ List Container */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Individual FAQ Item */
.faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.faq-item.active {
    border-color: #3b82f6;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    text-align: left;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    color: #3b82f6;
}

.faq-question span {
    flex: 1;
    padding-right: 16px;
    line-height: 1.5;
}

/* FAQ Icon */
.faq-icon {
    color: #3b82f6;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fafafa;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 200px;
    padding: 0 28px 24px;
}

.faq-answer p {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-faq {
        padding: 60px 20px;
    }
    
    .faq-question {
        padding: 20px 24px;
        font-size: 0.9375rem;
    }
    
    .faq-question[aria-expanded="true"] + .faq-answer {
        padding: 0 24px 20px;
    }
    
    .faq-answer p {
        font-size: 0.875rem;
    }
}

.whats-included {
  padding: 80px 20px;
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 64px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: #e2e8f0;
}

.icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-wrapper svg {
  width: 28px;
  height: 28px;
}

/* Soft pastel backgrounds matching your image */
.icon-blue { 
  background: #E0F2FE; 
  color: #0EA5E9; 
}

.icon-green { 
  background: #DCFCE7; 
  color: #22C55E; 
}

.icon-purple { 
  background: #F3E8FF; 
  color: #A855F7; 
}

.icon-orange { 
  background: #FFEDD5; 
  color: #F97316; 
}

.icon-pink { 
  background: #FCE7F3; 
  color: #EC4899; 
}

.icon-indigo { 
  background: #E0E7FF; 
  color: #6366F1; 
}

.icon-yellow { 
  background: #FEF9C3; 
  color: #EAB308; 
}

.icon-teal { 
  background: #CCFBF1; 
  color: #14B8A6; 
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.4;
}

.service-card p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* Responsive: Mobile */
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .whats-included {
    padding: 60px 16px;
  }
}

/* Responsive for CTA and Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}