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

/* GENERAL BODY */
body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #f8f9fa; /* Lighter modern background */
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

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

/* HEADER */
header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

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

.site-logo {
    max-width: 220px;
    height: auto;
}

/* NAVIGATION */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #0b3d91;
}

/* HERO SECTION */
.hero {
    background: #08673A;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

/* MAIN CONTENT SECTIONS */
.about, .shop {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

/* PRODUCTS SECTION */
.products {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.product-card {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 20px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    text-align: center;
}

/* BUTTONS */
.btn-primary {
    background-color: #08673A;
    color: #fff;
    border: none;
    padding: 12px 25px;
    margin-top: 15px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

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

/* FOOTER */
footer {
    background: #08673A;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}

/* EXPIRED DOWNLOAD PAGE */
.expired {
    padding: 100px 20px;
    text-align: center;
}

.expired h2 {
    color: #e63946;
    margin-bottom: 20px;
}

.expired p {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.95em;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d1e0ff; /* lighter hover color */
}


/* MAIN */
main {
    padding: 40px 20px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
    }

    .products {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        width: 90%;
    }
}

.policy {
    background: #ffffff;
    padding: 60px 20px;
    text-align: left;
}

.policy .container {
    max-width: 800px;
    margin: 0 auto;
}

.policy h2, 
.policy h3, 
.policy p, 
.policy ul {
    text-align: left;
}
