/* ======================
   GLOBAL RESET & BASE
====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* background-color: rgb(181, 243, 223); */
}

html {
    scroll-behavior: smooth; /* enables anchor scrolling */
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #222;
    line-height: 1.6;
    padding: 0 40px;
    
}

/* ======================
   HEADER
====================== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
}

.logo {
    height: 70px;
    width: auto;
}

nav a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    margin-left: 20px;
}

nav a:hover {
    color: #0a7cff;
}

/* ======================
   HEADINGS & TEXT
====================== */
h1 {
    margin-top: 30px;
    font-size: 32px;
}

h3 {
    margin: 20px 0 10px;
    color: #333;
}

p {
    margin-bottom: 10px;
}

/* ======================
   PRODUCTS SECTION
====================== */
#Page2 {
    margin-top: 50px;
}

.product-container {
    display: inline-flex;
    gap: 30px;
    margin-top: 30px;
}

/* fix invalid selector in HTML */
.product-container > div {
    width: 320px;
    border: 1px solid #eaeaea;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
}

.product-container img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.product-container h2 {
    margin: 15px 0 10px;
    font-size: 20px;
}

.product-container ul {
    padding-left: 20px;
}

/* ======================
   FOOTER
====================== */
footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
    font-size: 14px;
}

footer div {
    margin-bottom: 20px;
}

address {
    font-style: normal;
}

/* ======================
   WHATSAPP SECTION
====================== */
.whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    border-radius: 20px;
}

.whatsapp img {
    width: 28px;
    height: 28px;
}

/* ======================
   GOOGLE MAP
====================== */
.map-container {
    margin-top: 20px;
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eaeaea;
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 900px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        margin-top: 10px;
    }

    .product-container {
        flex-direction: column;
    }

    body {
        padding: 0 20px;
    }
}
