:root {
    --navy-blue: #1A2B4A;
    --light-navy: #2C3E5C;
    --brushed-gold: #C9A961;
    --cream-white: #F5F3EF;
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--cream-white);
}

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

.navbar {
    background: var(--navy-blue);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--cream-white);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

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

.nav-menu a {
    color: var(--cream-white);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--brushed-gold);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--brushed-gold);
    color: var(--navy-blue);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--cream-white);
    border-radius: 3px;
    transition: 0.3s;
}

.hero {
    background: linear-gradient(rgba(26, 43, 74, 0.8), rgba(26, 43, 74, 0.8)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--cream-white);
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 43, 74, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--cream-white);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--cream-white);
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background: var(--brushed-gold);
    color: var(--navy-blue);
}

.btn-primary:hover {
    background: #B89851;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
}

.btn-secondary:hover {
    background: var(--navy-blue);
    color: var(--cream-white);
}

.features-section,
.about-preview,
.comparison-section,
.products-section,
.cta-section {
    padding: 80px 0;
}

.features-section h2,
.about-preview h2,
.comparison-section h2,
.products-section h2 {
    text-align: center;
    color: var(--navy-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

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

.feature-icon {
    color: var(--brushed-gold);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

.stat-item h3 {
    color: var(--brushed-gold);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
}

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

.content-column p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.certifications {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.certifications h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.countdown-timer {
    text-align: center;
    margin-bottom: 3rem;
}

.countdown-timer p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.time-unit {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    min-width: 80px;
}

.time-unit span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brushed-gold);
}

.time-unit label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.table-responsive {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(26, 43, 74, 0.1);
}

.comparison-table th {
    background: var(--navy-blue);
    color: var(--cream-white);
    font-weight: 600;
}

.comparison-table tr:hover {
    background: rgba(201, 169, 97, 0.05);
}

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

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

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

.product-info {
    padding: 2rem;
}

.product-info h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.product-price {
    color: var(--brushed-gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.product-buttons .btn-primary,
.product-buttons .btn-secondary {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
}

.cta-section {
    background: var(--navy-blue);
    color: var(--cream-white);
    text-align: center;
}

.cta-section h2 {
    color: var(--cream-white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.footer {
    background: var(--navy-blue);
    color: var(--cream-white);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.footer-column h4 {
    color: var(--brushed-gold);
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: var(--cream-white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--brushed-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--cream-white);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--brushed-gold);
}

.contact-info li {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-info svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 243, 239, 0.2);
    color: rgba(245, 243, 239, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 2rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cookie-link {
    color: var(--brushed-gold);
    text-decoration: none;
    align-self: center;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--navy-blue);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .content-columns {
        grid-template-columns: 1fr;
    }
    
    .countdown-display {
        flex-wrap: wrap;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-buttons {
        flex-direction: column;
    }
}