.advisor-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: linear-gradient(135deg, #942562, #AB7C94);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.advisor-img {
    flex: 0 0 230px;
    max-width: 230px;
    margin-right: 20px;
}
.advisor-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    object-fit: cover;
}
.advisor-info {
    flex: 1;
    color: #fff;
}
.advisor-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-decoration: underline;
}
.advisor-info .advisor-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.advisor-info .advisor-text {
    font-size: 1rem;
    line-height: 1.5;
}
.advisor-arrow {
    flex: 0 0 80px;
    margin-left: 15px;
}
.advisor-arrow img {
    width: 100%;
    max-width: 80px;
    height: auto;
    transition: transform 0.3s ease;
}

.advisor-arrow img:hover {
    transform: translateX(5px);
}
@media (max-width: 768px) {
    .advisor-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .advisor-img {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .advisor-arrow {
        display: none;
    }
    .advisor-info .advisor-button {
        display: inline-block;
        margin-top: 15px;
        padding: 10px 20px;
        background-color: #AB7C94;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }

    .advisor-info .advisor-button:hover {
        background-color: #8F6078;
    }
}
