/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000000;
    background: #ffffff;
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.81-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z" fill="%23009739"/></svg>'), auto;
    position: relative;
}

/* Cursor trail effect */

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #FFDF00 0%, #009739 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    color: #000000;
}

h3 {
    font-size: 1.8rem;
    color: #333333;
}

p {
    margin-bottom: 1rem;
    color: #666666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 16px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #FFDF00 0%, #009739 100%);
    color: #000000;
    box-shadow: 0 8px 32px rgba(255, 223, 0, 0.3);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 223, 0, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #002776 0%, #0047AB 100%);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 39, 118, 0.3);
}

.btn-success {
    background: linear-gradient(135deg, #FFDF00 0%, #009739 100%);
    color: #000000;
    box-shadow: 0 8px 32px rgba(255, 223, 0, 0.3);
    font-weight: 700;
}

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

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 223, 0, 0.3) 100%);
    z-index: -1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    border-bottom: 2px solid #FFDF00;
}

.navbar {
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
}

.logo a {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.logo i {
    margin-right: 0.5rem;
    color: #009739;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #009739;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FFDF00 0%, #009739 100%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.cart-btn {
    position: relative;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FFDF00;
    color: #000000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666666;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #009739;
    border-bottom: 2px solid #009739;
    transform: rotate(45deg);
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #E8F5E8 100%);
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #666666;
}

/* Promo Banner */
.promo-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8F5E8 0%, #FFF8DC 100%);
}

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

.promo-item {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 223, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 223, 0, 0.3);
    transition: transform 0.3s ease;
}

.promo-item:hover {
    transform: translateY(-10px);
}

.promo-item i {
    font-size: 3rem;
    color: #009739;
    margin-bottom: 1rem;
}

.promo-item h3 {
    color: #000000;
    margin-bottom: 0.5rem;
}

/* Filters */
.filters {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 80px;
    z-index: 100;
    border-bottom: 1px solid #FFDF00;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid rgba(255, 223, 0, 0.5);
    background: transparent;
    color: #666666;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #FFDF00 0%, #009739 100%);
    color: #000000;
    border-color: transparent;
    font-weight: 700;
}

/* Products Grid */
.products-section {
    padding: 80px 0;
    min-height: 60vh;
}

.featured-products {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #E8F5E8 100%);
}

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

.product-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 223, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 223, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 223, 0, 0.3);
    border-color: #FFDF00;
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #666666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
}

.original-price {
    text-decoration: line-through;
    color: #999999;
}

.pix-price {
    font-size: 0.9rem;
    color: #009739;
    font-weight: 500;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
    flex: 1;
}

/* Product Details */
.product-details {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-images {
    position: sticky;
    top: 120px;
}

.product-images img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-price {
    margin-bottom: 2rem;
}

.product-price .current-price {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.product-options {
    margin: 2rem 0;
}

.product-options h4 {
    margin-bottom: 1rem;
    color: #000000;
}

.color-options,
.storage-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.color-option,
.storage-option {
    padding: 10px 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
}

.color-option:hover,
.storage-option:hover,
.color-option.active,
.storage-option.active {
    border-color: #FFDF00;
    background: rgba(255, 223, 0, 0.2);
    font-weight: 700;
}

.payment-methods {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 223, 0, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 223, 0, 0.3);
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.payment-option:last-child {
    border-bottom: none;
}

.payment-option i {
    color: #009739;
    font-size: 1.5rem;
}

.payment-option h4 {
    color: #000000;
    margin-bottom: 0.25rem;
}

.payment-option p {
    color: #666666;
    margin: 0;
    font-size: 0.9rem;
}

/* Freight Calculator */
.freight-calculator {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 223, 0, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 223, 0, 0.3);
}

.freight-form .input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.freight-form input {
    flex: 1;
    min-width: 120px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 223, 0, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
    font-size: 16px;
}

.freight-form input::placeholder {
    color: #999999;
}

.address-info,
.freight-result {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 223, 0, 0.1);
    border-radius: 8px;
    display: none;
    border: 1px solid rgba(255, 223, 0, 0.3);
}

.address-info.show,
.freight-result.show {
    display: block;
}

/* Why Choose */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8F5E8 0%, #FFF8DC 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 223, 0, 0.3);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 3rem;
    color: #009739;
    margin-bottom: 1rem;
}

/* Checkout */
.checkout-section {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.form-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 223, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #000000;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFDF00;
    box-shadow: 0 0 10px rgba(255, 223, 0, 0.3);
}

.payment-methods-checkout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-method {
    position: relative;
}

.payment-method input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-method label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid rgba(255, 223, 0, 0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.payment-method input[type="radio"]:checked + label {
    border-color: #FFDF00;
    background: rgba(255, 223, 0, 0.2);
}

.payment-method i {
    font-size: 1.5rem;
    color: #009739;
}

.payment-details {
    margin-top: 1rem;
    padding: 1.5rem;
    background: rgba(255, 223, 0, 0.1);
    border-radius: 10px;
    display: none;
    border: 1px solid rgba(255, 223, 0, 0.3);
}

.payment-details.show {
    display: block;
}

.order-summary {
    position: sticky;
    top: 120px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    height: fit-content;
    border: 1px solid rgba(255, 223, 0, 0.3);
}

.order-items {
    margin-bottom: 2rem;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 223, 0, 0.2);
}

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

.order-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.item-details h4 {
    margin-bottom: 0.25rem;
    color: #000000;
}

.item-details p {
    color: #666666;
    margin: 0;
    font-size: 0.9rem;
}

.order-totals {
    margin-bottom: 2rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 223, 0, 0.2);
}

.total-row.total {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    border-bottom: none;
    border-top: 2px solid rgba(255, 223, 0, 0.3);
    padding-top: 1rem;
}

.discount-row {
    color: #009739;
}

/* Related Products */
.related-products {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8F5E8 0%, #FFF8DC 100%);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    border-left: 2px solid #FFDF00;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 223, 0, 0.3);
}

.cart-header h3 {
    color: #000000;
}

.close-cart {
    background: none;
    border: none;
    color: #000000;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: #009739;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 223, 0, 0.2);
}

.cart-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-item-details h4 {
    color: #000000;
    margin-bottom: 0.25rem;
}

.cart-item-details p {
    color: #666666;
    margin: 0;
    font-size: 0.9rem;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid rgba(255, 223, 0, 0.3);
}

.cart-total {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.2rem;
    color: #000000;
    font-weight: 700;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #002776 0%, #0047AB 100%);
    padding: 80px 0 20px;
    border-top: 3px solid #FFDF00;
}

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

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section p {
    color: #cccccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 223, 0, 0.3);
    color: #cccccc;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
    z-index: 1500;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    border-top-color: #FFD700;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.align-center { align-items: center; }
.text-center { text-align: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* New styles for additional pages */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-text h2 {
    color: #000000;
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 223, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 223, 0, 0.3);
}

.values-list i {
    color: #009739;
    font-size: 1.2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 223, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 223, 0, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #009739;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666666;
    font-weight: 500;
}

.team-section {
    text-align: center;
    margin-top: 4rem;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Policies page styles */
.policies-content {
    padding: 80px 0;
}

.policies-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.policy-tab {
    padding: 12px 24px;
    border: 2px solid rgba(255, 223, 0, 0.5);
    background: transparent;
    color: #666666;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.policy-tab.active,
.policy-tab:hover {
    background: linear-gradient(135deg, #FFDF00 0%, #009739 100%);
    color: #000000;
    border-color: transparent;
    font-weight: 700;
}

.policy-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 3rem;
    border: 1px solid rgba(255, 223, 0, 0.3);
}

.policy-section {
    display: none;
}

.policy-section.active {
    display: block;
}

.policy-section h2 {
    color: #000000;
    margin-bottom: 1rem;
}

.policy-section h3 {
    color: #333333;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-section ul,
.policy-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    color: #666666;
}

/* Contact page styles */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 223, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 223, 0, 0.3);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFDF00 0%, #009739 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.5rem;
    color: #000000;
}

.method-info h3 {
    color: #000000;
    margin-bottom: 0.5rem;
}

.method-info p {
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.method-info span {
    color: #666666;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 223, 0, 0.3);
}

.contact-form-section h2 {
    color: #000000;
    margin-bottom: 1.5rem;
}

.faq-section {
    margin-top: 4rem;
    text-align: center;
}

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

.faq-item {
    padding: 2rem;
    background: rgba(255, 223, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 223, 0, 0.3);
    text-align: left;
}

.faq-item h3 {
    color: #000000;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item i {
    color: #009739;
}

.support-hours {
    margin-top: 4rem;
    text-align: center;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.hours-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    border: 1px solid rgba(255, 223, 0, 0.3);
}

.hours-item i {
    font-size: 2rem;
    color: #009739;
    margin-bottom: 1rem;
}

.hours-item h3 {
    color: #000000;
    margin-bottom: 1rem;
}

.hours-item p {
    color: #666666;
    margin: 0;
}