* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #74EBD5, #9FACE6);
    color: #000;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Section */
.header {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.logo {
    max-width: 1000px;
    height: auto;
    margin-left: 100px;
}

.navbar {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    flex-wrap: wrap;
    border-bottom: 3px solid #D5C8C8;
    border-top: 3px solid #D5C8C8;
    background-color: #ffffff;
    height: 35px;
    width: 100%;
    padding: 5px 0;
    margin: 0;
}

.navbar .nav-link {
    text-decoration: none;
    font-size: 16px;
    color: #1E2022;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Outfit', Verdana, Lucida;
    margin-top: 1px;
    background: none;
    border: none;
}

.nav-link:hover {
    color: #FF6347;
    transform: scale(1.1);
}

/* Main Content */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    padding: 20px;
    gap: 20px;
    flex-grow: 1;
}

/* About Section */
.about-section {
    text-align: justify;
    padding: 5px 10px;
}

.section-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 40px;
}

/* Purpose Section */
.purpose {
    background-color: #fefefe;
    border-radius: 20px;
    padding: 20px;
    margin: 20px auto;
    height: 150px;
    width: 85%;
    text-align: center;
}

.purpose h2 {
    font-size: 22px;
    color: #17a2b8;
}

.purpose p {
    color: #333;
    font-size: 16px;
    text-align: justify;
    line-height: 1.6;
}

/* Mission and Vision Section */
.mission-vision-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.mission, .vision {
    background-color: #fefefe;
    border-radius: 20px;
    padding: 20px;
    width: 40%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 4px dotted rgb(92, 193, 226);
}

.mission h2, .vision h2 {
    font-size: 20px;
    color: #17a2b8;
}

.mission p, .vision p {
    color: #333;
    font-size: 16px;
    text-align: justify;
    line-height: 1.6;
}

/* Footer */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    background-color: white;
    border-top: 3px solid #D5C8C8;
    font-family: 'Inter', Verdana;
    font-size: 0.9rem;
    color: #1E2022;
    width: 100%;
    margin-top: auto;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-bottom: 5px;
    margin-top: 3px;
}

.social-media img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease-in-out;
}

/* Background Shapes */
.background-shapes {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* Flex Container Adjustments */
.header, .content, .footer {
    position: relative;
    z-index: 1;
}

/* Shape Styles */
.shape {
    position: absolute;
    border: 3px solid rgba(255, 255, 255, 0.25);
    background: none;
    border-radius: 0;
}

.shape.circle {
    border-radius: 50%;
}

.shape.square {
    border-radius: 0;
}

.shape.triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(255, 255, 255, 0.25);
}


@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .purpose {
        padding: 15px;
        width: 90%;
    }

    .mission-vision-container {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .mission, .vision {
        width: 90%;
        margin-bottom: 20px;
    }

    .logo {
        max-width: 500px;
        height: auto;
        margin-left: 90px;
    }

    .content {
        align-items: flex-start;
    }

    .footer {
        font-size: 1rem;
    }

    .section-title {
        font-size: 32px;
    }

    .purpose h2 {
        font-size: 24px;
    }

    .purpose p {
        font-size: 18px;
    }

    .mission h2, .vision h2 {
        font-size: 22px;
    }

    .mission p, .vision p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .navbar .nav-link {
        font-size: 10px;
        padding: 3px;
    }

    .purpose {
        padding: 10px;
        width: 95%;
    }

    .purpose h2 {
        font-size: 18px;
    }

    .purpose p {
        font-size: 12px;
    }

    .mission h2, .vision h2 {
        font-size: 18px;
    }

    .mission p, .vision p {
        font-size: 14px;
    }

    .mission-vision-container {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-left: 15px;
    }

    .logo {
        max-width: 100%;
        height: auto;
        margin-left: 60px;
    }

    .footer {
        font-size: 0.8rem;
    }
}

