
.advisors-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.advisor-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}
.advisor-location {
    background-color: #f5f5f5;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
}
.advisor-main {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 15px;
}
.advisor-img img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}
.advisor-info {
    flex: 1;
}
.advisor-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
.advisor-role {
    font-size: 14px;
    color: #666;
    margin: 5px 0 10px;
}
.advisor-contact {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}
.advisor-buttons {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e0e0e0;
}
.advisor-buttons a {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    border-right: 1px solid #e0e0e0;
}
.advisor-buttons a:last-child {
    border-right: none;
}
.advisor-schedule {
    margin-top: 10px;
    padding: 10px;
    background-color: #f5f5f5;
    border-top: 1px solid #ccc;
    font-size: 14px;
    color: #333;
    border-radius: 0 0 8px 8px;
}
.call-btn {
    color: #25D366;
}
.whatsapp-btn {
    color: #007BFF;
}
.location-btn {
    color: #555;
}
@media (max-width: 768px) {
    .advisor-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.advisor-img img {
    width: 180px;
    height: 180px;
}
.advisor-buttons {
    flex-direction: column;
}
.advisor-buttons a {
    border: none;
    border-top: 1px solid #e0e0e0;
}
.advisor-buttons a:first-child {
    border-top: none;
}

}
