/* Main container styles */
.current-client-main {
    margin: 160px auto 50px;
    padding: 20px;
    max-width: 1200px;
    font-family: Arial, sans-serif;
}

/* Intro section styles */
.current-client-intro {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background-color: #eef3fc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.current-client-intro h1 {
    color: #0b2239;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.current-client-intro p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Advisor cards container */
.advisor-cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px;
}

/* Individual advisor card */
.advisor-card {
    background-color: #eef3fc;
    border-radius: 15px;
    padding: 30px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advisor-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Advisor image styles */
.advisor-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #0b2239;
}

.advisor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Advisor name styles */
.advisor-name {
    color: #0b2239;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

/* Portal button styles */
.portal-button {
    display: inline-block;
    background-color: #0b2239;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.portal-button:hover {
    background-color: #163c61;
    color: white;
    text-decoration: none;
}

/* Responsive styles */
@media (max-width: 768px) {
    .current-client-main {
        margin-top: 120px;
        padding: 15px;
    }

    .current-client-intro h1 {
        font-size: 2rem;
    }

    .current-client-intro p {
        font-size: 1rem;
    }

    .advisor-cards-container {
        gap: 20px;
    }

    .advisor-card {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .advisor-image {
        width: 150px;
        height: 150px;
    }

    .advisor-name {
        font-size: 1.3rem;
    }

    .portal-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}