.about-us, .mission-section {
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(to bottom, #ffffff, #f0f8ff);
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-section, .mission-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    height: auto;
}

.intro-section img, .mission-content img {
    width: 50%; /* Image takes up half the width */
    height: auto;
    border-radius: 10px; /* Smooth corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

.intro-text, .mission-content p {
    width: 50%; /* Text takes up half the width */
    padding: 20px;
    font-size: 1.1em;
    color: #333;
    line-height: 1.8;
}

.mission-section h2, .about-us h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.2em;
    color: #444;
}

.mission-section p, .intro-text {
    color: #555;
}

h1, h2 {
    font-family: 'Georgia', serif;
}

/* Dots and Clouds Background */
.about-us::before, .mission-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 150px;
    height: 150px;
    background: url('path/to/dots-pattern.png') no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.about-us::after, .mission-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 200px;
    background: url('path/to/cloud-pattern.png') no-repeat;
    opacity: 0.5;
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .intro-section, .mission-content {
        flex-direction: column;
        height: auto;
        text-align: center;
    }

    .intro-section img, .mission-content img {
        width: 100%; /* Image spans full width on small screens */
        height: auto;
    }

    .intro-text, .mission-content p {
        width: 100%; /* Text spans full width on small screens */
    }
}

/* Shadowed Section */
.section-shadow {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: #ffffff;
    padding: 20px;
}

/* Bullet Points Styling */
ul {
    padding-left: 20px;
    list-style-type: disc;
}

ul li {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 10px;
}
