/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* GLOBAL */
body {
    line-height: 1.6;
}

/* ABOUT SECTION */
.about-section {
    padding: 60px 20px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 18px;
    color: #555;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* COUNTERS */
.counter-section {
    display: flex;
    justify-content: space-around;
    background: #f5f5f5;
    padding: 50px 20px;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}

.counter-box {
    flex: 1 1 200px;
}

.counter-box h2 {
    font-size: 40px;
    color: #007BFF;
}

.counter-box p {
    margin-top: 10px;
    font-size: 18px;
}

/* MISSION */
.mission {
    padding: 60px 20px;
    text-align: center;
}

.mission h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.mission p {
    max-width: 700px;
    margin: auto;
    color: #555;
}

/* ========================= */
/* 📱 MOBILE (<= 768px) */
/* ========================= */
@media (max-width: 768px) {

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2 {
        font-size: 26px;
    }

    .about-text p {
        font-size: 16px;
    }

    .counter-box h2 {
        font-size: 28px;
    }

    .mission h2 {
        font-size: 24px;
    }
}

/* ========================= */
/* 📱 TABLET (769px - 1024px) */
/* ========================= */
@media (min-width: 769px) and (max-width: 1024px) {

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .counter-box h2 {
        font-size: 32px;
    }
}

/* ========================= */
/* 💻 LARGE DESKTOP */
/* ========================= */
@media (min-width: 1200px) {
    .about-text h2 {
        font-size: 36px;
    }
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}