/* ============================================
   STACKED ICE CREAM — Custom Styles
   Forest Green + Off-White Theme
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --forest-dark: #1a3c2a;
    --forest-primary: #2d6a4f;
    --forest-medium: #40916c;
    --forest-light: #52b788;
    --forest-pale: #b7e4c7;
    --forest-ghost: #d8f3dc;
    --off-white: #fefae0;
    --cream: #fdf6e3;
    --warm-white: #fefcf3;
    --sand: #e9edc9;
    --text-dark: #1a1a1a;
    --text-medium: #3d3d3d;
    --text-light: #6b6b6b;
    --shadow-sm: 0 2px 8px rgba(26, 60, 42, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 60, 42, 0.12);
    --shadow-lg: 0 8px 40px rgba(26, 60, 42, 0.16);
    --shadow-xl: 0 16px 60px rgba(26, 60, 42, 0.20);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --font-display: 'Fredoka', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--forest-dark);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
    color: var(--text-medium);
    font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--forest-primary);
    color: #ffffff;
    border-color: var(--forest-primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--forest-dark);
    border-color: var(--forest-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--forest-primary);
    border-color: var(--forest-primary);
}

.btn-secondary:hover {
    background: var(--forest-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.15rem;
    width: 100%;
}

.btn-light {
    background: #ffffff;
    color: var(--forest-primary);
    border-color: #ffffff;
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background: var(--forest-ghost);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: var(--forest-primary);
    transform: translateY(-2px);
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: var(--forest-ghost);
    color: var(--forest-primary);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 18px;
    border-radius: var(--radius-xl);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 250, 243, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 106, 79, 0.08);
    padding: 0 24px;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--forest-dark);
}

.logo-icon {
    font-size: 1.6rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-medium);
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--forest-primary);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--forest-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--forest-dark);
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: var(--forest-ghost);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(26, 60, 42, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--warm-white);
    padding: 100px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--forest-dark);
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.close-menu-btn:hover {
    background: var(--forest-ghost);
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 16px 0;
    border-bottom: 1px solid var(--forest-ghost);
    display: block;
}

.mobile-link:hover {
    color: var(--forest-primary);
    padding-left: 8px;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(160deg, var(--warm-white) 0%, var(--forest-ghost) 50%, var(--sand) 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(82, 183, 136, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 106, 79, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(233, 237, 201, 0.5) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--forest-primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--forest-light);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
    margin-bottom: 24px;
    color: var(--forest-dark);
}

.hero h1 span {
    color: var(--forest-primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.main-card {
    position: relative;
    width: 340px;
    height: 340px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.main-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-card:hover .main-card-img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    background: #ffffff;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--forest-dark);
    z-index: 3;
}

.card-badge.top-right {
    top: 16px;
    right: -20px;
    animation: float 4s ease-in-out infinite;
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: #ffffff;
    padding: 16px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
    font-family: var(--font-body);
}

.float-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.float-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.float-text strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--forest-dark);
}

.float-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.float-1 {
    top: 20px;
    left: -30px;
    animation: float 5s ease-in-out infinite;
}

.float-2 {
    bottom: 60px;
    right: -40px;
    animation: float 5s ease-in-out infinite 1s;
}

.float-3 {
    bottom: -20px;
    left: 10px;
    animation: float 5s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* --- Features Section --- */
.features {
    padding: 100px 0;
    background: var(--warm-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(45, 106, 79, 0.06);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--forest-pale);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: var(--forest-ghost);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--forest-primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--forest-primary);
    color: #ffffff;
    transform: scale(1.05);
}

.feature-card h3 {
    margin-bottom: 12px;
    color: var(--forest-dark);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- Menu Section --- */
.menu {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--forest-ghost) 0%, var(--warm-white) 100%);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.menu-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: grid;
    grid-template-columns: 1fr;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.menu-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover .menu-img {
    transform: scale(1.04);
}

.menu-img-wrapper {
    overflow: hidden;
}

.menu-content {
    padding: 28px 32px;
}

.menu-content h3 {
    margin-bottom: 10px;
    color: var(--forest-dark);
}

.menu-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.link-arrow {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--forest-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.link-arrow:hover {
    gap: 12px;
    color: var(--forest-dark);
}

.menu-note {
    text-align: center;
    background: #ffffff;
    padding: 24px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-size: 1rem;
    color: var(--text-medium);
    border: 2px dashed var(--forest-pale);
}

.menu-note strong {
    color: var(--forest-primary);
}

/* --- About Section --- */
.about {
    padding: 100px 0;
    background: var(--warm-white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: 30px;
    background: var(--forest-primary);
    color: #ffffff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 18px;
    color: var(--text-medium);
    line-height: 1.8;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--forest-ghost);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--forest-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
    display: block;
}

.stat-divider {
    width: 2px;
    height: 48px;
    background: var(--forest-pale);
    border-radius: 2px;
}

/* --- Visit Section --- */
.visit {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--warm-white) 0%, var(--forest-ghost) 100%);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(45, 106, 79, 0.06);
}

.info-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: var(--forest-pale);
}

.info-icon {
    width: 52px;
    height: 52px;
    background: var(--forest-ghost);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.info-card:hover .info-icon {
    background: var(--forest-primary);
    color: #ffffff;
}

.info-text h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--forest-dark);
}

.info-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.info-text a {
    color: var(--forest-primary);
    font-weight: 600;
}

.info-text a:hover {
    color: var(--forest-dark);
    text-decoration: underline;
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
}

/* --- CTA Section --- */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest-primary) 60%, var(--forest-medium) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: #ffffff;
    margin-bottom: 18px;
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

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

/* --- Footer --- */
.footer {
    background: var(--forest-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: #ffffff;
    margin-bottom: 18px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--forest-pale);
    padding-left: 6px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 4px;
}

.footer-contact a {
    color: var(--forest-pale);
    font-weight: 600;
}

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

.footer-bottom {
    padding: 28px 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Scroll Reveal --- */
.scroll-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion preference */
@media (prefers-reduced-motion: no-preference) {
    .scroll-reveal {
        opacity: 0;
        transform: translateY(30px);
    }
    
    .scroll-reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        min-height: 420px;
    }
    
    .main-card {
        width: 280px;
        height: 280px;
    }
    
    .float-1 { left: 0; }
    .float-2 { right: 0; }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-img {
        height: 400px;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-visual {
        min-height: 360px;
    }
    
    .main-card {
        width: 240px;
        height: 240px;
    }
    
    .float-card {
        padding: 12px 16px;
        gap: 10px;
    }
    
    .float-icon {
        font-size: 1.3rem;
    }
    
    .float-text strong {
        font-size: 1rem;
    }
    
    .float-text span {
        font-size: 0.7rem;
    }
    
    .float-1 { top: 0; left: -10px; }
    .float-2 { bottom: 30px; right: -10px; }
    .float-3 { bottom: -10px; left: 20px; }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-divider {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .features, .menu, .about, .visit {
        padding: 70px 0;
    }
    
    .feature-card {
        padding: 32px 24px;
    }
    
    .menu-content {
        padding: 20px 24px;
    }
    
    .info-card {
        padding: 20px;
    }
}
