.banner-section {
    /* Exact sage-green color picked from the image */
    background: linear-gradient(135deg, #5c8272 0%, #7a9b8d 100%);
    padding: 80px 0; /* Adjust padding to change the height of the banner */
    width: 100%;
}

/* 2. Text Styling */
.banner-title4 {
    color: #ffffff;
    font-family: var(--font-02);
    font-size: 1.6rem; 
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 5px;
    margin-bottom: 0;
}

/* 3. Icon Wrapper Spacing */
.icon-wrapper3 {
    margin-bottom: 5px;
}
.testimonial-container {
    max-width: 900px; /* Adjust as needed */
    margin: 0 auto;
    padding: 40px 20px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Soft, subtle shadow */
    border: none;
}

.profile-section {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.profile-icon {
    width: 50px;
    height: 50px;
    border-radius: 5px; /* slightly rounded corners for the icon box */
    border: 2px solid #5a7d7c; /* Muted green border */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    background-color: transparent;
}

/* The inner shape of the icon */
.profile-icon::after {
    content: '';
    width: 15px;
    height: 20px;
    border: 2px solid #5a7d7c;
    border-radius: 2px;
    background-color: transparent;
}

.profile-info h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50; /* Darker text for names */
}

.profile-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #7f8c8d; /* Muted text for titles */
    font-weight: 500;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-text:last-child {
     margin-bottom: 0;
}

.footer-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #ffffff; /* White background for the footer */
    border-top: 1px solid #eaeaea;
}

.moon-icon {
    font-size: 30px;
    color: #ffca28; /* Golden yellow */
    margin-bottom: 20px;
     /* Add a subtle dark outline if needed to match perfectly, but standard font-awesome looks close */
     -webkit-text-stroke: 1px #333; 
}

.footer-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a7d7c; /* Muted green matching the icons */
    max-width: 600px;
    margin: 0 auto;
    font-style: italic; /* Looks slightly italicized in the image */
}

.footer-text.bold-section {
     font-weight: bold;
     margin-top: 30px;
}