:root {
    --orange-primary: #FF6B35;
    --orange-light: #FF8C42;
    --orange-dark: #E55A2B;
    --green-primary: #90BE6D;
    --green-light: #A8D46B;
    --green-dark: #6A994E;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray: #DDDDDD;
    --dark: #333333;
    --shadow-sm: 0 2px 5px rgba(0,0,0,0.1);
    --shadow-md: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

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

/* ==================== Navigation ==================== */
.navbar {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

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

.logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 1.8rem;
}

/* ==================== Desktop Navigation ==================== */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}

.nav-links a:hover {
    opacity: 0.9;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-icons a {
    color: white;
    font-size: 1.2rem;
    position: relative;
    transition: var(--transition);
    text-decoration: none;
}

.nav-icons a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -12px;
    background: var(--green-primary);
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

/* ==================== Mobile Menu Toggle Button ==================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    transition: var(--transition);
}

.mobile-menu-toggle .hamburger-line {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: left center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
    width: 110%;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
    width: 110%;
}

/* ==================== Mobile Menu Overlay ==================== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* ==================== Responsive Mobile Menu ==================== */
@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
        padding: 0 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo {
        flex: 1;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 85%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 20px 30px;
        gap: 0;
        z-index: 999;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: var(--dark);
        width: 100%;
        padding: 15px 20px;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--gray-light);
        transition: var(--transition);
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-links a:hover,
    .nav-links a:focus {
        background: var(--gray-light);
        color: var(--orange-primary);
        padding-left: 25px;
    }
    
    .nav-icons {
        margin-left: auto;
        margin-right: 15px;
    }
    
    .nav-icons a {
        font-size: 1.3rem;
    }
    
    /* Body lock when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .logo span {
        font-size: 1rem;
    }
    
    .logo i {
        font-size: 1.3rem;
    }
    
    .nav-links {
        width: 260px;
    }
    
    .nav-links a {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .nav-icons {
        gap: 1rem;
    }
    
    .nav-icons a {
        font-size: 1.1rem;
    }
}

/* ==================== Hero Section ==================== */
.hero {
    background: linear-gradient(135deg, var(--green-light), var(--green-primary));
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    margin: 0 10px;
    font-weight: 500;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--orange-primary);
    color: white;
}

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

.btn-secondary {
    background: white;
    color: var(--orange-primary);
}

.btn-secondary:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-outline {
    background: transparent;
    color: var(--green-primary);
    border: 2px solid var(--green-primary);
}

.btn-outline:hover {
    background: var(--green-primary);
    color: white;
}

/* ==================== Categories Section ==================== */
.categories-section {
    padding: 60px 0;
    background: var(--gray-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.category-icon i {
    font-size: 3rem;
    color: var(--orange-primary);
    margin-bottom: 15px;
}

.category-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--orange-primary);
    font-weight: 500;
}

/* ==================== Products Section ==================== */
.products-section, .featured-products {
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.product-image {
    height: 250px;
    background: var(--gray-light);
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--orange-primary);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FFD700;
    color: var(--dark);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.product-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-price {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--orange-primary);
}

.old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-add-to-cart {
    background: var(--green-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
    transition: var(--transition);
    font-weight: 500;
}

.btn-add-to-cart:hover {
    background: var(--green-dark);
}

.btn-view {
    background: var(--gray-light);
    color: var(--dark);
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-view:hover {
    background: var(--gray);
}

/* ==================== Testimonials Section ==================== */
.testimonials-section {
    padding: 60px 0;
    background: var(--gray-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.testimonial-content {
    position: relative;
    padding: 10px 0;
}

.testimonial-content i {
    color: var(--orange-primary);
    font-size: 2rem;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -5px;
}

.testimonial-author {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info strong {
    display: block;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
}

.rating i {
    color: #FFD700;
    margin: 0 2px;
}

.rating i.active {
    color: #FFD700;
}

/* ==================== Benefits Page ==================== */
.benefits-section {
    padding: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--orange-primary);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--orange-primary);
    margin-bottom: 15px;
}

.benefit-card ul {
    margin-top: 15px;
    list-style: none;
}

.benefit-card ul li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-card ul li i {
    font-size: 1rem;
    color: var(--green-primary);
    margin: 0;
}

/* ==================== Cart Page ==================== */
.cart-section {
    padding: 60px 0;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th, .cart-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--gray);
}

.cart-summary {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 10px;
    position: sticky;
    top: 100px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.summary-row.total {
    border-top: 2px solid var(--gray);
    margin-top: 10px;
    padding-top: 15px;
    font-size: 1.2rem;
    font-weight: bold;
}

.empty-cart {
    text-align: center;
    padding: 60px 0;
}

.empty-cart i {
    font-size: 4rem;
    color: var(--gray);
    margin-bottom: 20px;
}

/* ==================== Checkout Page ==================== */
.checkout-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.checkout-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.order-summary {
    background: var(--gray-light);
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray);
}

.order-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.checkout-info {
    position: sticky;
    top: 100px;
}

.info-box, .contact-box {
    background: var(--green-light);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: white;
}

.info-box ul {
    list-style: none;
    margin-top: 15px;
}

.info-box ul li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box ul li i {
    width: 20px;
}

/* ==================== Store Sidebar ==================== */
.store-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.store-sidebar {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
    height: fit-content;
}

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

.category-list li {
    margin: 10px 0;
}

.category-list a {
    color: var(--dark);
    text-decoration: none;
    display: block;
    padding: 8px 12px;
    border-radius: 5px;
    transition: var(--transition);
}

.category-list a:hover,
.category-list a.active {
    background: var(--green-light);
    color: white;
}

/* ==================== Page Header ==================== */
.page-header {
    background: linear-gradient(135deg, var(--green-light), var(--green-primary));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* ==================== Section Header ==================== */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-tag {
    display: inline-block;
    background: #e8f5e9;
    color: var(--green-dark);
    padding: 0.2rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #1a2e1a;
}

.section-subtitle {
    color: #666;
    font-size: 0.9rem;
}

/* ==================== Benefits Highlights ==================== */
.benefits-highlights {
    padding: 2.5rem 0;
    background: #f9f9f9;
}

.benefits-highlights .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.benefit-item {
    padding: 1rem;
}

.benefit-icon {
    font-size: 2rem;
    color: var(--green-dark);
    margin-bottom: 0.8rem;
}

.benefit-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.benefit-item p {
    font-size: 0.8rem;
    color: #666;
}

/* ==================== CTA Section ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-wrapper {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--green-dark), #1e3a1f);
    border-radius: 20px;
    color: white;
}

.cta-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.cta-wrapper p {
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--green-dark);
}

.cta-trust {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    opacity: 0.8;
}

/* ==================== View All ==================== */
.view-all {
    text-align: center;
    margin-top: 2rem;
}

/* ==================== Footer ==================== */
footer {
    background: var(--dark);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: var(--orange-light);
}

.footer-section a {
    color: var(--gray);
    text-decoration: none;
    display: block;
    margin: 10px 0;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--orange-primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--orange-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.developer-credit {
    margin-top: 1rem;
    font-size: 0.85rem;
}

.developer-credit a {
    color: var(--orange-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.developer-credit a:hover {
    color: var(--orange-primary);
    text-decoration: underline;
}

/* ==================== Carousel Styles ==================== */
.hero-carousel {
    position: relative;
    overflow: hidden;
    min-height: 550px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

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

.hero-carousel .hero-content {
    padding: 4rem 0;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(5px);
}

.hero-carousel h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    max-width: 600px;
}

.hero-carousel p {
    font-size: 1rem;
    max-width: 500px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-stats .stat {
    font-size: 0.85rem;
}

.hero-stats .stat span {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.8);
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background: white;
    transform: scale(1.2);
}

/* ==================== Notifications ==================== */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    z-index: 9999;
    animation: slideIn 0.3s ease;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-success {
    background: var(--green-primary);
}

.notification-error {
    background: var(--orange-primary);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ==================== Responsive ==================== */
@media (max-width: 992px) {
    .hero-carousel h1 {
        font-size: 2.2rem;
    }
    
    .cart-content, .checkout-layout, .store-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-summary, .checkout-info {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-carousel h1 {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .cta-wrapper {
        padding: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-carousel .hero-content {
        padding: 2rem 0;
    }
    
    .hero-carousel h1 {
        font-size: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        margin: 0;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}