.consultants-section {
    width: 100%;
    padding: 40px 0;
}

.consultants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    width: 100%;
    margin: 30px 0;
}

.consultant-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.consultant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.consultant-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.consultant-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consultant-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    color: #333;
    flex: 1;
}

.consultant-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 400;
    margin-top: 0;
}

.consultant-info .job-title {
    color: #666;
    font-size: 1rem;
    margin-bottom: 15px;
}

.consultant-info .bio {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #444;
    margin-top: 0;
}

@media (max-width: 912px) {
    .consultant-card {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        min-height: 200px;
    }

    .consultant-photo {
        margin: 0;
        flex-shrink: 0;
    }

    .consultant-info {
        text-align: left;
        padding-left: 20px;
    }
}

/* Mobile override: stack photo above info on very small screens */
@media (max-width: 480px) {
    .consultants-grid {
        grid-template-columns: 1fr;
    }
    .consultant-card {
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
        width: 100%;
        min-width: 0;
    }
    .consultant-photo {
        width: 80%;
        max-width: 150px;
        height: auto;
    }
    .consultant-info {
        padding-left: 0;
        text-align: center;
    }
}

.about-us-section {
    width: 100%;
    padding: 40px 0;
}

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

.about-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffffffe1;
    margin: 20px 0;
    padding: 25px;
    text-align: left;
    background-color: #91c6fc34;
    border: 1px solid rgba(145, 198, 252, 0.5);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 945px) {
    .about-highlights {
      grid-template-columns: 1fr; /* 1 column on small screens */
    }
  }

.highlight-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.highlight-card p {
    color: #666;
    line-height: 1.6;
} 