:root {
    /* Colors */
    --primary: #0f172a;
    --primary-rgb: 15, 23, 42;
    --accent: #ca8a04;
    /* Gold/Amber */
    --accent-hover: #a16207;
    --accent-light: #fef9c3;

    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #f1f5f9;

    --bg-body: #ffffff;
    --bg-light: #f8fafc;
    --bg-surface: #ffffff;
    --bg-dark: #0f172a;

    --border-color: #e2e8f0;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Layout */
    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitons */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.25;
}

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

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    border: 2px solid var(--accent);
}

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

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.section {
    padding: var(--spacing-xl) 0;
}

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

.bg-dark {
    background-color: var(--bg-dark);
    color: white;
}

.text-white {
    color: white;
}

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

.text-centerbox {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--accent-light);
    color: var(--accent-hover);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.bg-dark .section-title {
    color: white;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.bg-dark .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

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

.logo-link {
    display: block;
}

.nav-logo {
    height: 110px;
    /* Adjusted size */
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 150px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding-top: 80px;
    /* Navbar height */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    /* Slight zoom for parallax effect later if js added, static for now */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay for text readability */
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 1.5rem 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
}

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

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Store Buttons */
.hero-store-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-store-btn {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.8rem 1.5rem;
    color: #ffffff;
    transition: var(--transition);
    min-width: 180px;
    text-decoration: none;
}

.hero-store-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-store-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    fill: currentColor;
}

.hero-store-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.hero-small-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-large-text {
    font-size: 1.1rem;
    font-weight: 600;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.step-icon {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(202, 138, 4, 0.15);
    /* Faded accent */
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.step-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.step-card p {
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.category-image {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: transparent;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

/* Add overlay to gradient for better text if needed, but text is below */

.category-content {
    padding: 1.5rem;
}

.category-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.category-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Why MAHTO */
.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
}

.why-us-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    transition: transform 0.5s ease;
}

.why-us-image:hover {
    transform: scale(1.02);
}

.feature-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.feature-text span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Ecosystem */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.eco-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.eco-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.eco-card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.eco-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.btn-link {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-link:hover {
    color: var(--accent);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to right, var(--bg-light), white);
}

.cta-box {
    background: var(--primary);
    color: white;
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--accent);
    filter: blur(100px);
    opacity: 0.2;
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    line-height: 1.8;
}

.heart-beat {
    display: inline-block;
    color: red;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.mobile-break {
    display: none;
}

/* Animations */
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.3);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.3);
    }

    70% {
        transform: scale(1);
    }
}

/* Footer Contact */
.footer-contact {
    margin-bottom: 3rem;
    text-align: center;
}

.contact-title {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.contact-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 350px;
    transition: var(--transition);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.icon-box {
    width: 48px;
    height: 48px;
    background: rgba(202, 138, 4, 0.2);
    /* Gold/Amber tint */
    border-radius: var(--radius-sm);
    /* Slightly rounded as per image */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    /* Gold/Amber color */
    flex-shrink: 0;
}

.contact-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

.contact-label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.contact-email {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.contact-email:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .contact-card {
        width: 100%;
        min-width: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Social Icons */
.social-label {
    font-size: 2rem;
    color: white;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* App Download Section */
.app-download-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.download-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 700;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.8rem 1.5rem;
    color: #ffffff;
    transition: var(--transition);
    min-width: 180px;
    text-decoration: none;
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: var(--accent);
}

.store-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    fill: currentColor;
}

.store-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.store-text .small-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
}

.store-text .large-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link[aria-label="X (formerly Twitter)"]:hover {
    background: #000000;
    color: white;
    border-color: #000000;
}

.social-link[aria-label="Instagram"]:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
    border-color: transparent;
}

.social-link[aria-label="Reddit"]:hover {
    background: #FF4500;
    color: white;
    border-color: #FF4500;
}

.social-link[aria-label="YouTube"]:hover {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .split-image {
        width: 100%;
    }
}

@media (max-width: 768px) {

    /* Prevent horizontal overflow */
    html,
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    /* Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        text-align: center;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out forwards;
    }

    .nav-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Logo sizing for mobile */
    .nav-logo {
        height: 70px;
    }

    .footer-logo {
        height: 100px;
    }

    /* Container */
    .container {
        padding: 0 1.25rem;
        width: 95%;
    }

    /* Typography */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
        word-wrap: break-word;
    }

    .section-desc {
        font-size: 1rem;
    }

    /* Hero Section */
    .hero {
        min-height: 600px;
        height: auto;
        padding-top: 100px;
        padding-bottom: 3rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 1.25rem;
        margin: 0 auto;
        max-width: 300px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    /* Store Buttons - Hero */
    .hero-store-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-store-btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        justify-content: center;
    }

    /* Sections */
    .section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    /* Grid Layouts */
    .steps-grid,
    .categories-grid,
    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Cards */
    .step-card {
        padding: 2rem 1.5rem;
    }

    .category-card {
        margin: 0 auto;
        max-width: 100%;
    }

    .eco-card {
        padding: 1.5rem;
    }

    /* Split Layout */
    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .split-image {
        width: 100%;
    }

    /* Feature List */
    .feature-list li {
        margin-bottom: 1.25rem;
    }

    /* CTA Box */
    .cta-box {
        padding: 2.5rem 1.5rem;
    }

    .cta-box h2 {
        font-size: 1.75rem;
    }

    .cta-box p {
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    /* Contact Cards */
    .contact-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-cards {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .contact-card {
        min-width: 0;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        padding: 1.25rem 1.5rem;
    }

    .contact-email {
        font-size: 0.8rem;
    }

    /* Download Section */
    .download-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    /* Store Buttons - Footer */
    .store-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
    }

    .store-btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        justify-content: center;
    }

    /* Social */
    .social-label {
        font-size: 1.5rem;
        margin-top: 1.5rem;
    }

    .footer-social {
        gap: 0.75rem;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    /* Mobile Break */
    .mobile-break {
        display: inline;
    }

    /* Footer Bottom */
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }

    /* Better touch targets */
    a,
    button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Text alignment for mobile */
    .text-centerbox {
        margin-bottom: 2rem;
    }

    /* Step icons */
    .step-icon {
        font-size: 2.5rem;
        top: 0.75rem;
        right: 1rem;
    }

    /* Category images */
    .category-image {
        height: 180px;
    }

    /* Icon boxes */
    .icon-box {
        width: 44px;
        height: 44px;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}