* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fefaf5;
    color: #1e2a2f;
    scroll-behavior: smooth;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 245, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-right h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f97316, #dc7a2c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

/* Desktop Navigation */
.nav-left {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.2rem;
    align-items: center;
}

.nav-left a {
    text-decoration: none;
    font-weight: 600;
    color: #2c3e2f;
    transition: 0.25s ease;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}

.nav-left a:hover, .nav-left a.active {
    color: #f97316;
    border-bottom-color: #f97316;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #f97316;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-left {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 1rem 0;
        background: rgba(255, 255, 245, 0.98);
        border-radius: 1rem;
    }
    
    .nav-left.active {
        display: flex;
    }
    
    .nav-left a {
        padding: 0.75rem;
        width: 100%;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(107deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.2)), url('https://images.pexels.com/photos/1092730/pexels-photo-1092730.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to top, #fefaf5, transparent);
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeUp 0.9s ease-out;
}

.hero-content h1, .hero-content h2 {
    font-size: clamp(2rem, 6vw, 3.8rem);
    font-weight: 800;
    color: white;
    text-shadow: 0 10px 20px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #fff9ef;
    font-weight: 500;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: #2b3b2c;
}

.section-header span {
    background: linear-gradient(120deg, #f97316, #ffb347);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Product Grid */
.products, .products-page {
    padding: 5rem 2rem;
    background: #ffffff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.product-card {
    background: #ffffff;
    border-radius: 2rem;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.1);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 40px rgba(0, 0, 0, 0.12);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.03);
}

.card-content {
    padding: 1.5rem 1.2rem 1.8rem;
    text-align: center;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f35c0e;
}

.price-tag {
    font-size: 1.4rem;
    font-weight: 800;
    color: #2d4a22;
    margin: 0.8rem 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f97316;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s;
    cursor: pointer;
}

.btn:hover {
    background: #e45f0a;
    transform: scale(0.97);
}

.btn-outline {
    background: transparent;
    border: 2px solid #f97316;
    color: #f97316;
}

.btn-outline:hover {
    background: #f97316;
    color: white;
}

/* Cart Badge */
.cart-badge {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #f97316;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
}

/* Cart Page */
.cart-page {
    padding: 5rem 2rem;
    min-height: 70vh;
}

.cart-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.cart-table {
    width: 100%;
    overflow-x: auto;
}

.cart-table table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th, .cart-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ffe2c4;
}

.cart-table th {
    background: #fff7ed;
    color: #f97316;
}

.cart-summary {
    margin-top: 2rem;
    text-align: right;
    padding-top: 1rem;
    border-top: 2px solid #ffe2c4;
}

/* Profile Page */
.profile-page {
    padding: 5rem 2rem;
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

.profile-sidebar {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid #ffe2c4;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f97316, #ffb347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.profile-avatar i {
    font-size: 3rem;
    color: white;
}

.profile-menu {
    margin-top: 2rem;
    text-align: left;
}

.profile-menu a {
    display: block;
    padding: 0.75rem;
    color: #666;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: 0.3s;
}

.profile-menu a:hover, .profile-menu a.active {
    background: #fff7ed;
    color: #f97316;
}

.profile-content {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid #ffe2c4;
}

.order-card {
    background: #fff7ed;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ffe2c4;
}

.order-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ffe2c4;
}

.order-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.status-pending { background: #fed7aa; color: #9a3412; }
.status-delivered { background: #dcfce7; color: #166534; }
.status-processing { background: #bfdbfe; color: #1e40af; }

/* Contact Page */
.contact-page {
    padding: 5rem 2rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #ffe2c4;
}

.info-card i {
    font-size: 2.5rem;
    color: #f97316;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2b3b2c;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #ffe2c4;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ffd9b5;
    border-radius: 10px;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}

.map-container {
    margin-top: 3rem;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid #ffe2c4;
}

.map-container iframe {
    width: 100%;
    height: 400px;
}

/* Footer */
.footer {
    background: #1a2a1f;
    color: #f0ede8;
    padding: 3rem 2rem 2rem;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
}

.subscribe {
    text-align: center;
    margin-bottom: 2.5rem;
}

.subscribe h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 60px 0 0 60px;
    font-size: 1rem;
    outline: none;
}

.subscribe-form button {
    background: #f97316;
    border: none;
    padding: 0 28px;
    border-radius: 0 60px 60px 0;
    font-weight: 700;
    color: white;
    cursor: pointer;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 1.5rem;
}

.social-links a {
    color: #ffdeb3;
    font-size: 1.5rem;
    transition: 0.2s;
}

.social-links a:hover {
    color: #f97316;
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
    border-top: 1px solid #3c5535;
    padding-top: 1.5rem;
}

/* Auth Pages */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fefaf5 0%, #fff7ed 100%);
    padding: 2rem;
}

.auth-card {
    background: white;
    padding: 2.5rem;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 450px;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-container {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .subscribe-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .subscribe-form input, .subscribe-form button {
        border-radius: 60px;
        width: 100%;
    }
    
    .cart-table {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 16px;
    }
}

.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* ==================== ABOUT PAGE STYLES ==================== */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.92), rgba(220, 122, 44, 0.85)), url('https://images.pexels.com/photos/161559/background-bitter-breakfast-bright-161559.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 2rem;
    text-align: center;
    color: white;
    position: relative;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease;
}

.about-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease;
}

/* About Page Container */
.about-page {
    padding: 5rem 2rem;
    background: linear-gradient(145deg, #ffffff 0%, #fef6e8 100%);
}

/* About Content Grid - Mission, Vision, Values */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* About Box Cards */
.about-box {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.15);
    position: relative;
    overflow: hidden;
}

.about-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f97316, #ffb347);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-box:hover::before {
    transform: scaleX(1);
}

.about-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(249, 115, 22, 0.15);
    border-color: #f97316;
}

/* Icons inside about boxes */
.about-box i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #f97316, #ffb347);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.about-box:hover i {
    transform: scale(1.1);
}

/* Headings inside about boxes */
.about-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2b3b2c;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.about-box h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #f97316, #ffb347);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.about-box:hover h3::after {
    width: 80px;
}

/* Paragraph inside about boxes */
.about-box p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Story Section */
.about-story {
    padding: 5rem 2rem;
    background: #ffffff;
}

.story-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    color: #2b3b2c;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.story-content h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #ffb347);
    border-radius: 2px;
}

.story-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
    background: #fff7ed;
    padding: 1rem;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #f97316;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.story-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

/* Mission Vision Section */
.mission-vision {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fff7ed 0%, #fefaf5 100%);
}

.mv-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(249,115,22,0.1);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(249,115,22,0.12);
    border-color: #f97316;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316, #ffb347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mv-icon i {
    font-size: 2.5rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.8rem;
    color: #2b3b2c;
    margin-bottom: 1rem;
}

.mv-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2b3b2c;
    margin-bottom: 3rem;
    position: relative;
    font-weight: 700;
}

.section-title span {
    background: linear-gradient(120deg, #f97316, #ffb347);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #fff7ed;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #ffe2c4;
}

.value-card:hover {
    transform: translateY(-5px);
    background: white;
    border-color: #f97316;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3rem;
    color: #f97316;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card h4 {
    font-size: 1.4rem;
    color: #2b3b2c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fff7ed 0%, #fefaf5 100%);
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
}

.team-info h4 {
    font-size: 1.4rem;
    color: #2b3b2c;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #f97316;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f97316, #ffb347);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    background: white;
    color: #f97316;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    background: #fff;
    color: #e45f0a;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for About Page */
@media (max-width: 968px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-box h3 {
        font-size: 1.5rem;
    }
    
    .mv-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 1rem;
        background-attachment: scroll;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .about-page {
        padding: 3rem 1rem;
    }
    
    .about-content {
        gap: 1.5rem;
    }
    
    .about-box {
        min-width: 100%;
        padding: 1.8rem;
    }
    
    .about-box h3 {
        font-size: 1.4rem;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: auto;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .mv-card {
        padding: 1.8rem;
    }
    
    .mv-icon {
        width: 60px;
        height: 60px;
    }
    
    .mv-icon i {
        font-size: 1.8rem;
    }
    
    .value-card h4 {
        font-size: 1.2rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-btn {
        padding: 12px 28px;
        font-size: 1rem;
    }
    
    .team-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .about-box h3 {
        font-size: 1.3rem;
    }
    
    .about-box p {
        font-size: 0.9rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-container {
        grid-template-columns: 1fr;
    }
    
    .story-content p {
        font-size: 0.95rem;
    }
}