   
   /* About Page Styles (navi.css) */


.about-content {
    max-width: 900px; 
    margin: 2rem auto;
    padding: 0 1.5rem;
}

/* Responsive Images  */

.hero-banner {
    margin: 3rem 0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.image-wrapper {
    margin: 3rem 0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* This makes ANY image with this class responsive */
.responsive-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Ensures image covers area without stretching */
}

.text-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-browm-clr);
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.8rem;
    color: var(--dark-browm-clr);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.text-body {
    font-size: 1.1rem;
    color: var(--gray-clr);
    line-height: 1.8; /* Makes text easier to read */
    margin-bottom: 1.5rem;
    text-align: justify; 
}

.custom-list {
    padding-left: 1.5rem;
}

.custom-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--gray-clr);
    padding-left: 0.5rem;
}

.custom-list strong {
    color: var(--orange-clr); 
}

.bg-light {
    background-color: var(--dawn-pink-clr);
    padding: 2rem;
    border-radius: 1rem;
}

footer .email-form-box {
    padding: 1rem;
    background: transparent;
    box-shadow: none;
}

footer .input-field {
    padding: 8px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .text-body {
        text-align: left; 
    }
}