:root {
    --light: #FFF5F3;
    --texting: #1553a8;
}
/* General styles */
body {
    /* font-family: 'Lucida Handwriting Std', sans-serif; */
    margin: 0;
    padding: 0;
    /* background-color: #f9f9f9; */
    margin: 0;
    /* font-family: Arial, sans-serif; */
    
    /* display: flex; */
    justify-content: center;
    align-items: center;
    /* overflow: hidden; */
  
}

.breadcrumbs {
    background-color: #3454a1;
    padding: 10px 20px;
    font-size: 14px;
}

.breadcrumbs a {
    text-decoration: none;
    color: white;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* About Us Container */
.about-us-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Left Column */
.about-us-text {
    flex: 1;
    padding-right: 20px;
    
}

.about-us-text h1 {
    font-size: 28px;
    color: #3454a1;
    margin-bottom: 10px;
}

.about-us-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

/* Right Column */
.about-us-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    flex: 0.5;
}

/* Circular Images */
.circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 768px) {
    .about-us-container {
        flex-direction: column;
        text-align: center;
    }

    .about-us-text {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .about-us-images {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .circle {
        width: 90px;
        height: 90px;
    }
}



.text-h1{
    color: var(--texting) !important;
    font-family: 'Lucida Handwriting Std', sans-serif; 
}

.text-p1{
    color: var(--texting) !important;
   
}