.about-btn.active-about {
    background: var(--text-light-gray) !important;
    color: var(--text-dark) !important;
}

.about-section {
    background: var(--bg-cream);
    padding: 60px 20px 80px;
    min-height: calc(100vh - 200px);
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
}

.profile-section {
    text-align: center;
    margin-bottom: 60px;
}

.profile-image-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transform: rotate(3deg);
    background: var(--tab-active);
    padding: 8px;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transform: rotate(-3deg);
}

.profile-section h1 {
    font-family: 'Teachers', serif;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.linkedin-link {
    display: inline-block;
    font-family: 'Teachers', serif;
    font-size: 16px;
    color: var(--text-gray);
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid var(--text-light-gray);
    background: var(--text-light-gray);
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 10px;
}

.linkedin-link:hover {
    background: var(--about-hover);
    border-color: var(--about-hover);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.story-section {
    background: white;
    padding: 50px;
    border: 1px solid var(--border-color);
}

.story-section p {
    font-family: 'Teachers', serif;
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.story-section .intro {
    font-size: 20px;
    color: var(--text-dark);
}

.quote-block {
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-cream);
    border-left: 4px solid var(--tab-active);
    text-align: center;
}

.quote {
    font-family: 'Teachers', serif;
    font-size: 24px;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 10px;
}

.attribution {
    font-family: 'Teachers', serif;
    font-size: 16px;
    color: var(--text-gray);
}

.closing {
    font-size: 18px;
    background: linear-gradient(to right, var(--bg-cream), white);
    padding: 20px;
    margin: 30px -20px 30px;
    border-radius: 8px;
}

.signature {
    margin-top: 40px;
    text-align: right;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.signature p {
    font-family: 'Teachers', serif;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.signature .name {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    font-style: italic;
}

.fun-facts {
    margin-top: 50px;
    padding: 40px;
    background: #f8f8f8;
    border: 1px solid var(--border-color);
}

.fun-facts h3 {
    font-family: 'Teachers', serif;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.fun-facts ul {
    list-style: none;
    padding: 0;
}

.fun-facts li {
    font-family: 'Teachers', serif;
    font-size: 16px;
    color: var(--text-gray);
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.fun-facts li:last-child {
    border-bottom: none;
}

.fun-facts li:before {
    content: "🎵";
    position: absolute;
    left: 0;
    top: 12px;
}

.footer-section {
    background: var(--bg-cream);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-section p {
    font-family: 'Teachers', serif;
    color: var(--text-gray);
    font-size: 14px;
}

@media (max-width: 768px) {
    .profile-section h1 {
        font-size: 28px;
    }

    .story-section {
        padding: 30px 20px;
    }

    .story-section p {
        font-size: 16px;
    }

    .story-section .intro {
        font-size: 18px;
    }

    .quote {
        font-size: 20px;
    }

    .quote-block {
        margin: 30px -20px;
        padding: 25px 20px;
    }

    .closing {
        margin: 30px -20px;
        padding: 20px;
    }

    .fun-facts {
        padding: 30px 20px;
        margin: 30px -20px 0;
    }

    .fun-facts h3 {
        font-size: 20px;
    }

    .signature {
        text-align: center;
    }
}