* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway, Arial, Helvetica, sans-serif";
    font-size: 1rem;
    line-height: 1.65;
}

.banner {
    position: relative;
    width: 100%;
    height: 300px;
    background: url('images/banner.jpg') center/cover no-repeat; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(92, 3, 3, 0.5); 
}
.banner-content {
    position: relative;
    z-index: 1;
    max-width: 80%;
}

.banner-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 18px;
    line-height: 1.5;
}

.about-section {
    background: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

.about-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-title {
    font-size: 28px;
    color: #0e0e0e;
    margin-bottom: 15px;
}

.about-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    margin-bottom: 15px;
}

.wrapper {
    width: 80%;
    margin: auto;
    padding: 50px 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.content-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    padding: 20px;
}
.info {
    width: 50%;
}
.picture {
    width: 40%;
}
.picture img {
    width: 70%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .content-section {
        flex-direction: column;
        text-align: center;
    }
    .info, .picture {
        width: 100%;
    }
    .picture {
        order: -1;
        margin-bottom: 20px;
    }
}

.objectives-container {
    width: 80%;
    margin: auto;
    padding: 50px 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.objectives-heading {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}
.objectives-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 20px;
}
.objectives-text {
    width: 55%;
}
.objectives-text ul {
    list-style: none;
    padding: 0;
}
.objectives-text ul li {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    color: #0f0f0f;
}
.objectives-image {
    width: 40%;
}
.objectives-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
/* Responsive */
@media (max-width: 768px) {
    .objectives-content {
        flex-direction: column;
        text-align: center;
    }
    .objectives-text, .objectives-image {
        width: 100%;
    }
    .objectives-image {
        order: -1;
        margin-bottom: 20px;
    }
    .objectives-text ul li {
        justify-content: center;
    }
}


.choose-container {
    width: 80%;
    margin: auto;
    padding: 50px 0;
    background: rgb(12, 12, 12);
    color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(209, 193, 14, 0.1);
    text-align: center;
}
.choose-heading {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #a59e14;
}
.choose-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 20px;
}
.choose-text {
    width: 100%;
}
.choose-text ul {
    list-style: none;
    padding: 0;
}
.choose-text ul li {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    margin-left: 32%;
}
.icon {
    font-size: 24px;
    margin-right: 10px;
    color: #a59e14; 
}
.container {
    background: #e0e0e0;
    width: 100%;
    max-width: 800px;
    justify-content: center;
    align-items: center;
    margin-left: 19%;
}

.core-values {
    background: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.value {
    display: flex;
    align-items: center;
    background: #cac572;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.value i {
    font-size: 24px;
    margin-right: 15px;
    color: #950c0c;
}

.value p {
    margin: 0;
    text-align: left;
    color: #333;
}
.join-container {
    width: 80%;
    margin: auto;
    padding: 50px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.join-heading {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ff0000;
}
.join-text {
    font-size: 18px;
    margin-bottom: 20px;
}
.contact-details {
    list-style: none;
    padding: 0;
    font-size: 16px;
}
.contact-details li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-details icon {
    font-size: 22px;
    margin-right: 10px;
    color: #ff0d00; 
}