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

body {
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 86px;
    letter-spacing: 1px;
    /* Account for fixed header height */
}

@media (max-width: 768px) {
    body {
        padding-top: 62px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 58px;
    }
}

/* Heading and Navbar Font */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cardo', serif;
    font-weight: 400;
}

.nav-link,
.logo,
.footer-logo,
.footer-links a {
    font-family: 'Inter', serif;
}

.breadcrumb {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-content a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-content a:hover {
    color: #ffd700;
}

.breadcrumb-content i {
    color: #999;
    font-size: 12px;
}

.breadcrumb-content span {
    color: #333;
    font-weight: 500;
}

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

/* Header Styles */
.header {
    background-color: #000;
    color: white;
    padding: 18px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #00C896 0%, #00A67A 100%);
    color: #000;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1.2px;
    flex-shrink: 0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 200, 150, 0.2);
}

.logo:hover {
    background: linear-gradient(135deg, #00A67A 0%, #008B63 100%);
    color: #000;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 200, 150, 0.3);
}

.logo:active {
    transform: translateY(0);
}

.logo .icon {
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo:hover .icon {
    transform: scale(1.1);
}

.logo-text {
    white-space: nowrap;
    font-weight: 600;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    cursor: pointer;
    padding: 10px;
    color: white;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: 44px;
    height: 44px;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 200, 150, 0.2);
    border-color: #00C896;
    color: #00C896;
    transform: scale(1.05);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-toggle .icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle .close-icon {
    position: absolute;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active .menu-icon {
    display: none;
}

.mobile-menu-toggle.active .close-icon {
    display: block;
    transform: rotate(90deg);
}

.nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00C896, #00E5B8);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #00C896;
}

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

.nav-link.active {
    color: #00C896;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #00C896 0%, #00A67A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 44px;
    flex-shrink: 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 200, 150, 0.2);
}

.cart-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 200, 150, 0.3);
    background: linear-gradient(135deg, #00A67A 0%, #008B63 100%);
}

.cart-icon:active {
    transform: translateY(0);
}

.cart-icon .icon {
    font-size: 20px;
    color: #000;
    transition: transform 0.3s ease;
}

.cart-icon:hover .icon {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #00E5B8 0%, #00C896 100%);
    color: #000;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid #000;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Hero Section */
.hero {
    height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f1419 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 200, 150, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 229, 184, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 200, 150, 0.05) 0%, rgba(0, 166, 122, 0.1) 100%);
    background-size: 100% 100%, 100% 100%, cover;
    background-position: center;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0, 200, 150, 0.03) 2px, rgba(0, 200, 150, 0.03) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(0, 229, 184, 0.02) 2px, rgba(0, 229, 184, 0.02) 4px);
    opacity: 0.5;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 200, 150, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, 30px) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 1140px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-button {
    background-color: #00C896;
    color: #000;
    border: none;
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

/* Products Section */
.products-section {
    background-color: white;
    padding: 80px 0;
}

.section-divider {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ddd;
    z-index: 1;
}

.section-divider span {
    background-color: white;
    padding: 0 20px;
    color: #666;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.about-section {
    margin-bottom: 50px;

}

.about-section p {
    margin-bottom: 15px;
}

.section-title {
    text-align: start;
    font-size: 24px;
    font-weight: 400;
    color: #000;
    margin-bottom: 25px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.product-card {
    background: white;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-link {
    text-decoration: none;
    color: inherit;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-link:hover {
    text-decoration: none;
    color: inherit;
}

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

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

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

.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ffffff;
    color: #334155;
    padding: 0.4em 0.8em;
    border-radius: 20px;
    letter-spacing: 0.5px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.product-info {
    padding: 20px;
}

.product-category {
    color: #858d99;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-name {
    font-size: 14px;
    font-family: 'Inter', serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #333;
    min-height: 59px;
}

.product-rating {
    margin-bottom: 10px;
}

.product-rating i {
    color: #ddd;
    margin-right: 2px;
}

.product-price {
    margin-bottom: 0px;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
    margin-right: 10px;
}

.sale-price {
    color: #000000;
    font-size: 16px;
    font-weight: 700;
}

.add-to-cart {
    background-color: #000;
    color: white;
    border: none;
    padding: 15px 12px;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
    text-transform: capitalize;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin: 0px 20px 20px 20px;
}

.add-to-cart:hover {
    background-color: #333;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #00C896;
    color: #000;
    padding: 8px 15px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.footer-logo i {
    font-size: 18px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00C896;
}

.scroll-top {
    background-color: #00C896;
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top:hover {
    background-color: #00E5B8;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 14px 0;
    }

    .header-content {
        position: relative;
    }

    .logo {
        font-size: 11px;
        padding: 8px 12px;
        gap: 8px;
    }

    .logo .icon {
        font-size: 16px;
    }

    .logo-text {
        display: inline;
        font-size: 11px;
    }

    .header-right {
        gap: 12px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
        flex-direction: column;
        gap: 0;
        padding: 80px 0 30px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        padding: 18px 30px;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 16px;
        position: relative;
        transition: all 0.3s ease;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(180deg, #00C896, #00E5B8);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(0, 200, 150, 0.1);
        color: #00C896;
        padding-left: 35px;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        transform: scaleY(1);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .cart-icon {
        height: 40px;
        width: 40px;
    }

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

    .cart-count {
        width: 20px;
        height: 20px;
        font-size: 10px;
        top: -6px;
        right: -6px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 12px 0;
    }

    .logo {
        font-size: 10px;
        padding: 7px 10px;
        gap: 6px;
    }

    .logo .icon {
        font-size: 14px;
    }

    .logo-text {
        display: inline;
        font-size: 10px;
    }

    .header-right {
        gap: 10px;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .mobile-menu-toggle .icon {
        width: 20px;
        height: 20px;
    }

    .nav {
        width: 260px;
        padding: 70px 0 25px;
    }

    .nav-link {
        padding: 16px 25px;
        font-size: 15px;
    }

    .nav-link:hover,
    .nav-link.active {
        padding-left: 30px;
    }

    .cart-icon {
        height: 38px;
        width: 38px;
    }

    .cart-icon .icon {
        font-size: 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .product-card {
        margin: 0 10px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.product-card {
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card:nth-child(5) {
    animation-delay: 0.5s;
}

.product-card:nth-child(6) {
    animation-delay: 0.6s;
}

.product-card:nth-child(7) {
    animation-delay: 0.7s;
}

.product-card:nth-child(8) {
    animation-delay: 0.8s;
}

.product-card:nth-child(9) {
    animation-delay: 0.9s;
}

.product-card:nth-child(10) {
    animation-delay: 1.0s;
}

.product-card:nth-child(11) {
    animation-delay: 1.1s;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Cart Modal Styles */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.cart-modal-content {
    background: white;
    border-radius: 3px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cart-modal-header h3 {
    margin: 0;
    font-family: 'Inter', serif;
    color: #333;
}

.close-modal {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #999;
}

.close-modal:hover {
    color: #333;
}

.cart-modal-body {
    padding: 20px;
    overflow-y: auto;
    max-height: 450px;
}

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

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.cart-item-details h4 {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', serif;
    margin: 0 0 5px 0;
}

.cart-item-details p {
    margin: 0 0 10px 0;
    font-size: 12px;
    color: #666;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background: #f0f0f0;
    border: none;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-weight: bold;
}

.quantity-btn:hover {
    background: #ddd;
}

.quantity {
    font-weight: bold;
    min-width: 20px;
    text-align: center;
}

.remove-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
}

.remove-btn:hover {
    background: #c0392b;
}

.empty-cart {
    text-align: center;
    color: #999;
    padding: 40px 0;
}

.cart-total {
    padding: 15px 0;
    border-top: 2px solid #eee;
    text-align: right;
    font-size: 18px;
    color: #333;
}

.cart-modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cart-modal .btn-primary,
.cart-modal .btn-secondary {
    padding: 15px 12px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.cart-modal .btn-primary {
    background: #00C896;
    color: #000;
}

.cart-modal .btn-primary:hover {
    background: #00E5B8;
}

.cart-modal .btn-secondary {
    background: #f0f0f0;
    color: #333;
}

.cart-modal .btn-secondary:hover {
    background: #ddd;
}

@media (max-width: 768px) {
    .cart-modal-content {
        width: 95%;
        margin: 10px;
    }

    .cart-item {
        flex-direction: column;
        gap: 10px;
    }

    .cart-item-image {
        width: 100%;
        height: 150px;
    }

    .cart-modal-footer {
        flex-direction: column;
    }
}

.footer-address {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.footer-address .address-icon {
    flex-shrink: 0;
}

.footer-address .icon {
    width: 20px;
    height: 20px;
    fill: #00C896;
}

.footer-address .address-content p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 5px 0;
    color: #ccc;
}

.footer-address .address-content p:last-child {
    margin-bottom: 0;
}

.footer-address .address-content a {
    color: #00C896;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-address .address-content a:hover {
    color: #00A67A;
    text-decoration: underline;
}

/* Contact Info Styles for About Page */
.contact-info {
    margin: 20px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #00C896;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon .icon {
    width: 20px;
    height: 20px;
    fill: #000;
}

.contact-details h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
}

.contact-details p {
    margin: 0;
    color: #666;
    line-height: 1.4;
}

.contact-details a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #00C896;
    text-decoration: underline;
}

/* Policy Page Styles */
.policy-header {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #00C896;
}

.policy-header p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

.policy-header strong {
    color: #333;
}

/* Enhanced list styling for policy pages */
.about-list {
    padding-left: 0;
    list-style: none;
}

.about-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.about-list li::before {
    content: "•";
    color: #00C896;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.about-list li strong {
    color: #333;
}

/* Responsive adjustments for policy pages */
@media (max-width: 768px) {
    .policy-header {
        padding: 15px;
        margin-bottom: 20px;
    }

    .policy-header p {
        font-size: 13px;
    }
}

/* Policy highlight section for important information */
.policy-highlight {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-left: 4px solid #00C896;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.policy-highlight .highlight-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #00C896;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-highlight .highlight-icon .icon {
    width: 20px;
    height: 20px;
    fill: #000;
}

.policy-highlight .highlight-content h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #333;
    font-family: 'Cardo', serif;
}

.policy-highlight .highlight-content p {
    margin: 0;
    color: #666;
    line-height: 1.4;
    font-size: 14px;
}

/* Responsive adjustments for policy highlights */
@media (max-width: 768px) {
    .policy-highlight {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }

    .policy-highlight .highlight-content h4 {
        font-size: 15px;
    }

    .policy-highlight .highlight-content p {
        font-size: 13px;
    }
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.contact-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #00C896;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background-color: #00C896;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background-color: #00A67A;
    transform: scale(1.1);
}

.contact-card-icon .icon {
    width: 28px;
    height: 28px;
    fill: #000;
}

.contact-card-content h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Cardo', serif;
}

.contact-card-content p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.contact-card-content a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: #00C896;
}

/* Business Hours Styles */
.business-hours {
    margin: 20px 0;
}

.hours-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #00C896;
}

.hours-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #00C896;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hours-icon .icon {
    width: 20px;
    height: 20px;
    fill: #000;
}

.hours-content h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #333;
    font-family: 'Cardo', serif;
}

.hours-content p {
    margin: 2px 0;
    color: #666;
    font-size: 14px;
}

/* Response Times Styles */
.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.response-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.response-item:hover {
    border-color: #00C896;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.response-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #00C896;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.response-icon .icon {
    width: 20px;
    height: 20px;
    fill: #000;
}

.response-content h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
    font-family: 'Cardo', serif;
}

.response-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

/* Quick Links Styles */
.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.quick-link {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-link:hover {
    border-color: #00C896;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    text-decoration: none;
}

.quick-link-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #00C896;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quick-link:hover .quick-link-icon {
    background-color: #00A67A;
    transform: scale(1.1);
}

.quick-link-icon .icon {
    width: 20px;
    height: 20px;
    fill: #000;
}

.quick-link-content h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
    font-family: 'Cardo', serif;
}

.quick-link-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px 0;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-card-content h2 {
        font-size: 20px;
    }

    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

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

    .response-item,
    .quick-link {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .quick-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-card-icon {
        width: 50px;
        height: 50px;
    }

    .contact-card-icon .icon {
        width: 24px;
        height: 24px;
    }

    .contact-card-content h2 {
        font-size: 18px;
    }

    .contact-card-content p {
        font-size: 14px;
    }
}

/* Contact Methods Styles */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.method-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.method-item:hover {
    border-color: #00C896;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.method-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: #00C896;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.method-item:hover .method-icon {
    background-color: #00A67A;
    transform: scale(1.05);
}

.method-icon .icon {
    width: 22px;
    height: 22px;
    fill: #000;
}

.method-content h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #333;
    font-family: 'Cardo', serif;
}

.method-content p {
    margin: 0 0 5px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.method-content p:last-child {
    margin-bottom: 0;
}

.method-content a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.method-content a:hover {
    color: #00C896;
}

/* Enhanced response time styling */
.response-time {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
    font-style: italic;
}

/* Responsive Design for Contact Methods */
@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .method-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px;
    }

    .method-content h4 {
        font-size: 16px;
    }
}

/* Header Navigation Active States */
.nav-link.active {
    color: #00C896;
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #00C896;
    border-radius: 1px;
}

/* Enhanced hover effect for non-active nav links */
.nav-link:not(.active):hover {
    color: #00C896;
    transition: color 0.3s ease;
}

/* Footer Links Active States */
.footer-links a.active {
    color: #00C896;
    font-weight: 600;
    position: relative;
}

.footer-links a.active::before {
    content: '▶';
    margin-right: 5px;
    font-size: 10px;
    color: #00C896;
}

/* Enhanced footer link hover for non-active links */
.footer-links a:not(.active):hover {
    color: #00C896;
}

/* Responsive adjustments for active states */
@media (max-width: 768px) {
    .nav-link.active::after {
        display: none;
    }

    .footer-links a.active::before {
        font-size: 8px;
    }
}