/* ===== ABOUT ME ===== */

.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
}

.about-info {
    order: 1;
    flex: 1;
}

.about-avatar {
    order: 2;
    width: 350px;
    height: auto;
    max-width: 350px;
}


/* ===== ABOUT BOXES ===== */

.about-box {
    background-color: #fff0f8;
    padding: 20px;
    margin-top: 25px;
    border-radius: 15px;
}


/* ===== BELIEFS AND VALUES ===== */

.beliefs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.beliefs span {
    text-align: center;
}


/* ===== ABOUT TABS ===== */

.tab-buttons {
    display: flex;
    width: calc(100% + 40px);
    margin: -20px -20px 25px -20px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.tab-button {
    flex: 1;
    box-sizing: border-box;
    padding: 14px 10px;
    border: none;
    border-radius: 0;
    background-color: #ffd6eb;
    color: hotpink;
    font-family: "lemonmilk", sans-serif;
    font-size: 15px;
    cursor: pointer;
}

.tab-button:hover {
    background-color: #ffb6d9;
    color: white;
}

.tab-button.active {
    background-color: hotpink;
    color: white;
}


/* ===== TAB CONTENT ===== */

.tab-content {
    display: none !important;
}

.tab-content.active {
    display: block !important;
}

