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

.aboutme-wrapper {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.aboutme-hero {
    text-align: center;
    margin-bottom: 60px;
}

.aboutme-hero h1 {
    font-size: 42px;
    color: #E88CA7;
    margin-bottom: 16px;
    font-family: 'Sour Gummy', sans-serif;
}

.aboutme-hero p {
    font-size: 18px;
    color: #999;
    font-style: italic;
}

.aboutme-avatar {
    width: 120px;
    height: 120px;
    background: #F8DBDF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
}

.aboutme-section {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    margin-bottom: 24px;
}

.aboutme-section h2 {
    font-size: 22px;
    color: #E88CA7;
    margin-bottom: 16px;
    font-family: 'Sour Gummy', sans-serif;
}

.aboutme-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.aboutme-section p:last-child {
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.value-card {
    background: #FDF1F3;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #F8DBDF;
}

.value-card .icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.value-card h3 {
    font-size: 15px;
    color: #333;
    margin-bottom: 6px;
    font-weight: 600;
}

.value-card p {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.cta-section {
    text-align: center;
    padding: 40px 20px;
}

.cta-section h2 {
    font-size: 26px;
    color: #E88CA7;
    margin-bottom: 12px;
    font-family: 'Sour Gummy', sans-serif;
}

.cta-section p {
    color: #999;
    margin-bottom: 24px;
    font-size: 15px;
}