/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Verdana', sans-serif;
}

body {
    background-color: #fff8f0;
    color: #3b2f2f;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========== HEADER ========== */
header {
    background-color: #f5d6a1;
    text-align: center;
    padding: 60px 20px;
}

header h1 {
    font-size: 2.8rem;
    color: #7b3f00;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
}

/* ========== ABOUT US SECTION ========== */
.about {
    background-color: #f5f0e1;
    padding: 60px 20px;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    color: #7b3f00;
    margin-bottom: 20px;
}

.about p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ========== PRODUCT LOCATOR SECTION ========== */
.locator {
    background-color: #fff3e0;
    padding: 60px 20px;
    text-align: center;
}

.locator h2 {
    font-size: 2rem;
    color: #b45309;
    margin-bottom: 20px;
}

.locator ul {
    list-style-type: none;
}

.locator li {
    margin-bottom: 10px;
    font-weight: bold;
}

/* ========== EMAIL/PROMOTION SECTION ========== */
.signup {
    background-color: #d97706;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.signup h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.signup input[type="email"] {
    padding: 12px;
    width: 250px;
    border-radius: 5px;
    border: none;
    margin-right: 10px;
}

.signup button {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #d97706;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.signup button:hover {
    background-color: #ffe6b3;
}

/* ========== FOOTER ========== */
footer {
    background-color: #7b3f00;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }

    .signup input[type="email"] {
        width: 100%;
        margin-bottom: 10px;
    }

    .signup button {
        width: 100%;
    }
}
