* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* =========================
   NAVIGATION BAR
========================= */

.navbar {
    position: relative;
    height: 50px;
    background: #087cf5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
}

.logo {
    color: white;
    font-size: 25px;
    font-weight: bold;
    margin-right: auto;
}

.nav-links {
    display: flex;
    gap: 45px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    color: white;
    font-size: 35px;
    cursor: pointer;
    line-height: 1;
}

.nav-links a:hover {
    color: #dbeaff;
}

@media (max-width: 900px) {
    .navbar {
        padding: 0 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: auto;
        padding: 20px 25px;
        flex-wrap: wrap;
    }

    .hamburger {
        display: block;
        margin-left: auto;
        z-index: 2;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        background: #087cf5;
        padding: 15px 20px 20px;
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-links a {
        display: block;
        width: 100%;
        font-size: 18px;
    }

    .menu-toggle:checked + .hamburger + .nav-links {
        display: flex;
    }

    .menu-toggle:checked + .hamburger {
        color: #dbeaff;
    }
}

@media (max-width: 600px) {
    .navbar {
        height: auto;
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

}

   @media (max-width: 768px) {
    .logo {
        position: relative;
        top: 50px;
    }
   }

.about-heading {
    padding: 50px;
    margin-bottom: 31px;
    text-align: center;
    font-size: 30px;
    color: #26282c;
    font-weight: 800;
    margin: 0 0 70px;
    text-decoration: underline;
    text-underline-offset: 12px;
}


/* =========================
   ABOUT PAGE
========================= */

.about-container {
    width: 90%;
    max-width: 1150px;
    margin: 50px auto;
}

/* Main heading */

.about-container h1 {
    text-align: center;
    color: #0077b6;
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-container h1::after {
   
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #00b4d8;
    margin: 12px auto;
    border-radius: 10px;
}

/* Intro paragraph */

.about-intro {
   
    text-align: center;
    max-width: 800px;
    font-weight: bold;
    margin: 0 auto 40px;
    font-size: 30px;
    color: #555;
}

/* =========================
   ABOUT CARDS
========================= */

.about-section {
    background: white;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.10);
    border-left: 5px solid #00b4d8;
    transition: 0.3s ease;
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 119, 182, 0.16);
}

.about-section h2 {
    color: #0077b6;
    font-size: 27px;
    margin-bottom: 15px;
}

.about-section p {
    color: #555;
    font-size: 16px;
    margin-bottom: 10px;
}

/* =========================
   LISTS
========================= */

.about-section ul {
    list-style: none;
    padding: 0;
}

.about-section ul li {
    position: relative;
    padding: 10px 0 10px 30px;
    color: #444;
    font-size: 16px;
}

.about-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: #00a896;
    font-size: 18px;
    font-weight: bold;
}

/* =========================
   MISSION + WHY CHOOSE US
========================= */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.about-grid .about-section {
    margin-bottom: 0;
}

/* =========================
   RESPONSIVE TABLET
========================= */

@media (max-width: 768px) {

    nav {
        height: auto;
        padding: 18px 5%;
        flex-direction: column;
        gap: 15px;
    }

    nav .logo {
        font-size: 25px;
    }

    nav ul {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li a {
        font-size: 15px;
    }

    .about-container {
        width: 92%;
        margin: 35px auto;
    }

    .about-container h1 {
        font-size: 34px;
    }

    .about-intro {
        font-size: 16px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding: 25px;
    }
}

/* =========================
   RESPONSIVE MOBILE
========================= */

@media (max-width: 480px) {

    nav {
        padding: 15px 20px;
    }

    nav .logo {
        font-size: 23px;
    }

    nav ul {
        gap: 12px;
    }

    nav ul li a {
        font-size: 14px;
    }

    .about-container {
        width: 92%;
        margin: 25px auto;
    }

    .about-container h1 {
        font-size: 30px;
    }

    .about-intro {
        font-size: 15px;
    }

    .about-section {
        padding: 20px;
        border-left-width: 4px;
    }

    .about-section h2 {
        font-size: 23px;
    }

    .about-section p,
    .about-section ul li {
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 0 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .navbar {
        height: auto;
        padding: 20px 25px;
        flex-wrap: wrap;
    }

    .logo {
        margin-right: auto;
    }
}

