/* Products Section Styling */
.products {
    padding: 4rem 2rem;
    background-color: #fff;
}

.products-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.product-card {
    background-color: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.product-image {
    height: 200px;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    color: var(--color-navy);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.product-content p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-emerald);
    color: white;
    font-weight: 600;
    border-radius: 2rem;
    text-align: center;
    transition: background-color 0.3s;
}

.product-link:hover {
    background-color: #28a745;
}

.product-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-gold);
    color: var(--color-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    color: var(--color-navy);
    margin-bottom: 3rem;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .products-container {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 180px;
    }
}

:root {
    --color-navy: #1a2a6c;
    --color-emerald: #2ecc71;
    --color-gold: #f1c40f;
    --color-light: #f9f9f9;
    --color-dark: #333;
    --font-primary: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    font-size: 16px;
    color: var(--color-dark);
    background-color: var(--color-light);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-navy);
}

nav ul {
    display: flex;
    gap: 1.5rem;
}

nav a {
    font-weight: 400;
    color: var(--color-dark);
    transition: color 0.3s;
}

nav a:hover {
    color: var(--color-emerald);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--color-navy) 0%, #2a5298 100%);
    color: #fff;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-gold);
    color: var(--color-dark);
    font-weight: 600;
    border-radius: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #d4ac0d;
    transform: translateY(-2px);
}

/* Section Headings */
section h2 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    color: var(--color-navy);
}

section h2::after {
    content: '';
    width: 4rem;
    height: 4px;
    background-color: var(--color-emerald);
    display: block;
    margin: 0.5rem auto 2rem;
}

/* Products Section Styling */
.products {
    padding: 4rem 2rem;
    background-color: #fff;
}

.products-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.product-card {
    background-color: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

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

.product-image {
    height: 200px;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    color: var(--color-navy);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.product-content p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    color: #555;
}

.product-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-emerald);
    color: white;
    font-weight: 600;
    border-radius: 2rem;
    text-align: center;
    transition: background-color 0.3s;
    width: 100%;
}

.product-link:hover {
    background-color: #28a745;
    transform: translateY(-2px);
}

.product-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-gold);
    color: var(--color-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    color: var(--color-navy);
    margin-bottom: 3rem;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--color-navy);
    color: #fff;
    padding: 2rem 2rem 1rem;
}

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

.footer-column h3 {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

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

.footer-column ul li a {
    color: #fff;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--color-emerald);
}

.bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.bottom-footer .legal-links li {
    display: inline;
    margin-left: 1rem;
}

.bottom-footer a:hover {
    color: var(--color-emerald);
}

/* Mobile Menu */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
}

.burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .products-container {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 180px;
    }

    nav ul {
        display: none;
    }

    .burger {
        display: flex;
    }

    nav.show {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    nav.show ul {
        display: flex;
        flex-direction: column;
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bottom-footer {
        flex-direction: column;
        gap: 1rem;
    }
}