
/* Banner */
.banner-section {
    position: relative;
    height: 40rem;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    height: 100%;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: white;
}

.banner-content p {
    max-width: 800px;
    font-size: 1rem;
    line-height: 1.8;
}

@media screen and (min-width: 640px) {
    .banner-section { height: 30rem; }
    .banner-content h1 { font-size: 2.5rem; }
    .banner-content p { font-size: 1.1rem; }
}

@media screen and (min-width: 768px) {
    .banner-section { height: 35rem; }
    .banner-content h1 { font-size: 3rem; }
    .banner-content p { font-size: 1.2rem; }
}

@media screen and (min-width: 1024px) {
    .banner-section { height: 40rem; }
    .banner-content p { font-size: 1.3rem; }
}

/* Content Section */
/* General content section styles */
.content-section {
    padding: 3rem 1rem;
    background: #fff;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr; /* Single column on small screens */
}

.text-block {
    padding: 2rem 1rem;
    color: #1f2937; /* slate-800 */
    text-align: left;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.brand-name {
    color: #0F88D9; /* pink-600 */
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6b7280; /* gray-500 */
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    padding-left: 0;
    font-size: 1rem;
    line-height: 1.7;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.highlight1 {
    font-weight: 600;
    color: #0F88D9;
    margin-right: 0.5rem;
}

/* Mission and Vision Section */
.mission-vision-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 2rem;
}

.mission-section, .vision-section {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.mission-image, .vision-image {
    flex: 1;
}

.mission-text, .vision-text {
    flex: 1;
    padding: 0 1rem;
}

.mission-image img, .vision-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.mission-text h1, .vision-text h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.mission-text p, .vision-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
}

/* Responsive Design Adjustments */
@media screen and (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr; /* Single column on smaller screens */
        gap: 2rem;
    }

    .mission-section, .vision-section {
        flex-direction: column; /* Stack items on smaller screens */
        text-align: center;
    }

    .mission-text, .vision-text {
        padding: 0;
    }
}

@media screen and (max-width: 768px) {
    .text-block h1 {
        font-size: 2rem;
    }

    .text-block h2 {
        font-size: 1.2rem;
    }

    .text-block p {
        font-size: 1rem;
    }

    .mission-text h1, .vision-text h1 {
        font-size: 1.5rem;
    }

    .features-list {
        font-size: 0.9rem;
    }

    .mission-image img, .vision-image img {
        max-width: 100%; /* Ensure images fit */
    }
}

/* Features list items */
.features-list {
    list-style: none;
    padding-left: 0;
    font-size: 1rem;
    line-height: 1.7;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: row;  /* Default to horizontal layout on larger screens */
    align-items: center;
}

/* Make sure the highlight icon and text are properly spaced */
.features-list li .highlight1 {
    font-weight: 600;
    color: #0F88D9;
    margin-right: 0.5rem;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    /* Stack the highlight and text vertically on small screens */
    .features-list li {
        flex-direction: column;  /* Stack vertically */
        align-items: flex-start; /* Align to the left */
    }

    .features-list li .highlight1 {
        margin-bottom: 0.5rem;  /* Add space between the icon and text */
    }
}
