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

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.6;
    color: #212121;
    background-color: #f1f3f6;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar {
    background-color: #2874f0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.logo span {
    font-size: 11px;
    color: #f0f0f0;
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background-color 0.2s;
    font-size: 14px;
}

.nav-links a:hover {
    background-color: rgba(255,255,255,0.15);
}

.nav-links a.active {
    background-color: rgba(255,255,255,0.2);
    font-weight: 600;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #2874f0 !important;
    padding: 8px 15px !important;
    border-radius: 4px;
    font-weight: 600 !important;
}

.cart-icon i {
    font-size: 18px;
}

.cart-icon:hover {
    background: #f0f0f0 !important;
}

#cart-count {
    background-color: #ff6161;
    color: white;
    border-radius: 50%;
    padding: 1px 5px;
    font-size: 10px;
    position: absolute;
    top: -4px;
    right: 4px;
    min-width: 17px;
    text-align: center;
    font-weight: 700;
    line-height: 15px;
}

.hero {
    background: linear-gradient(135deg, #2874f0 0%, #1a5dc8 100%);
    color: white;
    text-align: center;
    padding: 50px 0 40px;
}

.hero h1 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 0;
}

.btn-primary {
    display: inline-block;
    background-color: #ff9f00;
    color: #fff;
    padding: 10px 24px;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
}

.btn-primary:hover {
    background-color: #fb641b;
}

.about {
    padding: 50px 0;
    background-color: #fff;
}

.about h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #212121;
    font-size: 24px;
}

.about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
    color: #555;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.feature {
    text-align: center;
    padding: 25px 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
    transition: box-shadow 0.3s;
}

.feature:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature i {
    font-size: 32px;
    color: #2874f0;
    margin-bottom: 15px;
}

.feature h3 {
    margin-bottom: 10px;
    color: #212121;
    font-size: 16px;
}

.cta {
    background: linear-gradient(135deg, #2874f0 0%, #1a5dc8 100%);
    color: white;
    text-align: center;
    padding: 50px 0;
}

.cta h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.cta p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

footer {
    background-color: #172337;
    color: #c2c2c2;
    padding: 40px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #c2c2c2;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2c3e50;
    font-size: 13px;
    opacity: 0.7;
}

/* Shop Styles */
.products {
    padding: 30px 0;
    background-color: #f1f3f6;
}

.products h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #212121;
    font-size: 22px;
}

.filters {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    background: #fff;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.filters select,
.filters input {
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    width: 200px;
    background: #fff;
}

.filters select {
    cursor: pointer;
}

.filters select:focus,
.filters input:focus {
    outline: none;
    border-color: #2874f0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.product-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s, transform 0.2s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.product-image {
    height: 180px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s;
}

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

.product-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    margin-bottom: 8px;
    color: #212121;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-info p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 0;
    margin-top: auto;
}

.product-price::before {
    content: attr(data-price-label);
    font-size: 12px;
    font-weight: 400;
    color: #666;
}

.add-to-cart {
    background-color: #ff9f00;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    margin-top: 12px;
    transition: background-color 0.2s;
}

.add-to-cart:hover {
    background-color: #fb641b;
}

.add-to-cart:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.loading,
.error {
    text-align: center;
    padding: 40px;
    color: #666;
    grid-column: 1 / -1;
}

/* Cart Page */
.cart-page {
    padding: 30px 0;
    background-color: #f1f3f6;
    min-height: 60vh;
}

.cart-page h2 {
    text-align: left;
    margin-bottom: 20px;
    color: #212121;
    font-size: 22px;
}

.cart-summary {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

#cart-items {
    flex: 2;
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    padding: 20px;
}

#cart-total {
    flex: 0 0 320px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    padding: 25px;
    position: sticky;
    top: 90px;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 90px;
    height: 90px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #f0f0f0;
}

.cart-item-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    margin-bottom: 6px;
    color: #212121;
    font-size: 16px;
    font-weight: 500;
}

.cart-item-price {
    color: #212121;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    width: fit-content;
}

.cart-item-quantity button {
    background: #fafafa;
    color: #212121;
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.2s;
}

.cart-item-quantity button:hover {
    background: #e0e0e0;
}

.cart-item-quantity span {
    min-width: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    padding: 5px 0;
}

.cart-item-remove {
    background: none;
    color: #2874f0;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    text-decoration: underline;
}

.cart-item-remove:hover {
    color: #1a5dc8;
}

#cart-total h3 {
    margin-bottom: 20px;
    color: #212121;
    font-size: 16px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-total-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14px;
    color: #555;
}

.cart-total-item:last-of-type {
    border-top: 1px dashed #e0e0e0;
    margin-top: 10px;
    padding-top: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #212121;
}

.checkout-btn {
    background-color: #fb641b;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.2s;
}

.checkout-btn:hover {
    background-color: #e85a0e;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-cart i {
    font-size: 64px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.empty-cart p {
    font-size: 18px;
    margin-bottom: 25px;
}

.empty-cart a.btn-primary {
    display: inline-block;
    width: auto;
    padding: 12px 30px;
}

/* Checkout Page */
.checkout-page {
    padding: 30px 0;
    background-color: #f1f3f6;
    min-height: 60vh;
}

.checkout-page h2 {
    text-align: left;
    margin-bottom: 25px;
    color: #212121;
    font-size: 22px;
}

.checkout-form {
    max-width: 700px;
    margin: 0;
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    padding: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #212121;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2874f0;
    box-shadow: 0 0 0 2px rgba(40,116,240,0.1);
}

.form-group h3 {
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.place-order-btn {
    background-color: #fb641b;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s;
}

.place-order-btn:hover {
    background-color: #e85a0e;
}

.place-order-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#checkout-cart-items {
    background: #fafafa;
    border-radius: 4px;
    padding: 15px;
    margin: 10px 0;
}

#checkout-cart-items .cart-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

#checkout-cart-items .cart-item:last-child {
    border-bottom: none;
}

#checkout-cart-total {
    margin-top: 15px;
    border-top: 2px solid #e0e0e0;
    padding-top: 15px;
}

#checkout-cart-total .cart-total-item {
    font-size: 14px;
    padding: 8px 0;
}

#checkout-cart-total .cart-total-item:last-child {
    font-weight: 700;
    font-size: 16px;
    color: #212121;
}

/* Payment Page */
.payment-container {
    max-width: 750px;
    margin: 30px auto;
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    padding: 30px;
}

.payment-container h2 {
    color: #212121;
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

#order-summary {
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 14px;
}

#order-summary p {
    margin: 4px 0;
}

#order-summary p strong {
    color: #212121;
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
}

.payment-method {
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.payment-method:hover {
    border-color: #2874f0;
    box-shadow: 0 2px 8px rgba(40,116,240,0.1);
}

.payment-method i {
    font-size: 40px;
    margin-bottom: 12px;
}

.payment-method.upi i {
    color: #2874f0;
}

.payment-method.whatsapp i {
    color: #25D366;
}

.payment-method h3 {
    margin-bottom: 8px;
    color: #212121;
    font-size: 16px;
}

.payment-method p {
    color: #666;
    margin-bottom: 10px;
    font-size: 13px;
}

.whatsapp-number {
    font-size: 18px;
    font-weight: 700;
    color: #25D366;
}

#upi-qr-code {
    margin: 20px auto;
    display: flex;
    justify-content: center;
}

#confirm-whatsapp-payment,
#confirm-upi-payment {
    margin-top: 15px;
    background-color: #fb641b;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.2s;
}

#confirm-whatsapp-payment:hover,
#confirm-upi-payment:hover {
    background-color: #e85a0e;
}

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

.btn-outline {
    display: inline-block;
    border: 1px solid #2874f0;
    color: #2874f0;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: background-color 0.2s, color 0.2s;
}

.btn-outline:hover {
    background-color: #2874f0;
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-links a {
        font-size: 12px;
        padding: 6px 10px;
    }

    .filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filters select,
    .filters input {
        width: 100%;
    }

    .cart-summary {
        flex-direction: column;
    }

    #cart-total {
        flex: 1;
        position: static;
        width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card .product-info p {
        display: none;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }
}

.banner-carousel {
    background: #f1f3f6;
    padding: 10px 0;
    overflow: hidden;
}
.banner-carousel .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.banner-carousel .banner-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 5px 0;
}
.banner-carousel .banner-slider::-webkit-scrollbar {
    display: none;
}
.banner-carousel .banner-slide {
    flex: 0 0 auto;
    scroll-snap-align: start;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    background: white;
    cursor: pointer;
}
.banner-carousel .banner-slide:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.banner-carousel .banner-slide a {
    display: block;
    text-decoration: none;
    color: inherit;
}
.banner-carousel .banner-slide img {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: cover;
}
@media (min-width: 768px) {
    .banner-carousel .banner-slide img {
        max-height: 200px;
    }
}

.banner-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}
.banner-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}
.banner-dots span.active {
    background: #2874f0;
}

.page-hero {
    background: linear-gradient(135deg, #2874f0 0%, #1a5dc8 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}
.page-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
}
.page-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 60px 0;
    background: #f1f3f6;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.info-card {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.info-card .info-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2874f0, #1a5dc8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 15px;
}
.info-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c3e50;
}
.info-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}
.info-card a {
    color: #2874f0;
    text-decoration: none;
    font-weight: 500;
}
.info-card a:hover {
    text-decoration: underline;
}
.info-card .info-note {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.contact-form-wrapper {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.contact-form-wrapper h2 {
    font-size: 24px;
    margin-bottom: 6px;
    color: #2c3e50;
}
.contact-form-wrapper .form-subtitle {
    color: #888;
    font-size: 14px;
    margin-bottom: 25px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form .form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
}
.contact-form .form-group label span {
    color: #e74c3c;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
    font-family: inherit;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #2874f0;
    box-shadow: 0 0 0 3px rgba(40,116,240,0.1);
}
.btn-submit {
    background: #fb641b;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}
.btn-submit:hover {
    background: #e85d14;
}
.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.form-message {
    padding: 14px 18px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.map-section {
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.map-section iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

.social-section {
    text-align: center;
    margin-top: 50px;
}
.social-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    color: #2874f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, background 0.2s, color 0.2s;
    text-decoration: none;
}
.social-link:hover {
    transform: translateY(-3px);
    background: #2874f0;
    color: white;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-cards {
        grid-template-columns: 1fr 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .page-hero h1 {
        font-size: 30px;
    }
    .map-section iframe {
        height: 280px;
    }
}
@media (max-width: 480px) {
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

.table-responsive .text-right {
    text-align: right;
}
.table-responsive th.text-right {
    text-align: right;
}

.about-intro {
    padding: 70px 0;
    background: white;
}
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-intro-text h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}
.about-intro-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}
.about-intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}
.stat-item {
    text-align: center;
    background: #f1f3f6;
    padding: 20px 10px;
    border-radius: 10px;
}
.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2874f0;
}
.stat-label {
    display: block;
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}

.about-mvv {
    padding: 70px 0;
    background: #f1f3f6;
}
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.mvv-card {
    background: white;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}
.mvv-card:hover {
    transform: translateY(-4px);
}
.mvv-card .mvv-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}
.mvv-card.mission .mvv-icon { background: linear-gradient(135deg, #2874f0, #1a5dc8); }
.mvv-card.vision .mvv-icon { background: linear-gradient(135deg, #fb641b, #e85d14); }
.mvv-card.values .mvv-icon { background: linear-gradient(135deg, #27ae60, #1e8449); }
.mvv-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}
.mvv-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
.mvv-card ul {
    list-style: none;
    padding: 0;
}
.mvv-card ul li {
    font-size: 14px;
    color: #666;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}
.mvv-card ul li:last-child {
    border-bottom: none;
}
.mvv-card ul li strong {
    color: #2c3e50;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 8px;
}
.section-header p {
    font-size: 15px;
    color: #888;
}

.about-services {
    padding: 70px 0;
    background: white;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.service-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #eee;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: #2874f0;
}
.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2874f0, #1a5dc8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 18px;
}
.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}
.service-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
}

.about-why {
    padding: 70px 0;
    background: #f1f3f6;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.why-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}
.why-card:hover {
    transform: translateY(-4px);
}
.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb641b, #e85d14);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 15px;
}
.why-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c3e50;
}
.why-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
}

.about-cta {
    padding: 70px 0;
    background: linear-gradient(135deg, #2874f0 0%, #1a5dc8 100%);
    text-align: center;
    color: white;
}
.about-cta h2 {
    font-size: 32px;
    margin-bottom: 12px;
}
.about-cta p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}
.about-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fb641b;
    color: white;
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
.about-cta .cta-btn:hover {
    background: #e85d14;
}

@media (max-width: 768px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-cta h2 {
        font-size: 26px;
    }
}
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
