* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f1ec;
    color: #333;
}

/* ================= HERO ================= */

.hero {
    height: 70vh;
    background: linear-gradient(135deg, #2c2c2c, #3f3f3f);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: white;
}

.logo {
    width: 150px;
    padding: 20px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #8c5c3d;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 42px;
    color: #e6e0d4;
    margin-bottom: 10px;
}

.hero p {
    font-size: 16px;
    color: #d2c5b0;
    margin-bottom: 25px;
}

.btn {
    padding: 12px 30px;
    background-color: #8c5c3d;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background-color: #a06b47;
}

/* Social */

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #d2c5b0;
    margin: 0 8px;
    font-size: 16px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #8c5c3d;
}

/* ================= ABOUT ================= */

.about {
    padding: 70px 20px;
    text-align: center;
    background: white;
}

.about h2 {
    color: #8c5c3d;
    margin-bottom: 20px;
}

.about p {
    max-width: 800px;
    margin: 10px auto;
    line-height: 1.8;
}

/* ================= ACTIVITY ================= */

.activity {
    padding: 70px 20px;
    text-align: center;
    background: #f4f1ec;
}

.activity h2 {
    color: #8c5c3d;
    margin-bottom: 20px;
}

.activity p {
    max-width: 800px;
    margin: 10px auto;
    line-height: 1.8;
}

/* ================= SERVICES ================= */

.services {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 70px 20px;
    background: white;
    flex-wrap: wrap;
}

.card {
    background: #f9f9f9;
    width: 260px;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card i {
    font-size: 26px;
    color: #8c5c3d;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
    color: #8c5c3d;
}

.card:hover {
    transform: translateY(-6px);
}

/* ================= LOCATION ================= */

.location {
    padding: 70px 20px;
    text-align: center;
    background: #f4f1ec;
}

.location h2 {
    color: #8c5c3d;
    margin-bottom: 20px;
}

.map-container iframe {
    border-radius: 12px;
}

/* ================= CONTACT ================= */

.contact {
    padding: 70px 20px;
    text-align: center;
    background: #2c2c2c;
    color: white;
}

.contact h2 {
    color: #e6e0d4;
    margin-bottom: 15px;
}

.contact p {
    color: #d2c5b0;
    margin: 8px 0;
}

/* ================= FOOTER ================= */

footer {
    background: #1f1f1f;
    padding: 15px;
    text-align: center;
    color: #aaa;
    font-size: 14px;
}