.about-content {
    position: relative;
    z-index: 1;
    padding: 4rem 8rem;
    color: #f5e6d3;
    display: flex;
    flex-direction: column;
    font-family: 'Georgia', 'Garamond', serif;
    max-width: 900px;
}

.about-content h1 {
    font-size: 3.5rem;
    margin: 0 0 1.5rem 0;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #d4a574;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(184, 115, 51, 0.4),
        0 0 40px rgba(184, 115, 51, 0.2);
    font-style: italic;
}

.about-section {
    margin-bottom: 1rem;
    padding: 0.8rem 0;
    transition: all 0.4s ease;
}

.about-section:hover {
    transform: translateX(10px);
}

.about-section h2 {
    font-size: 1.8rem;
    margin: 0 0 0.9rem 0;
    color: #d4a574;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.about-section:hover h2 {
    color: #e8c090;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(184, 115, 51, 0.5);
}

.about-section p {
    font-size: 1rem;
    line-height: 1.5;
    color: #c9b896;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.about-footer {
    margin-top: 1.2rem;
    padding: 1.5rem 0 0 0;
    border-top: 2px solid rgba(184, 115, 51, 0.3);
    text-align: center;
}

.about-footer p {
    font-size: 1.4rem;
    color: #d4a574;
    margin: 0.5rem 0;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.about-footer .footer-note {
    font-size: 1.1rem;
    color: #c9b896;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        padding: 2rem 3rem;
    }
    
    .about-content h1 {
        font-size: 2.5rem;
    }
    
    .about-section h2 {
        font-size: 1.6rem;
    }
    
    .about-section p {
        font-size: 1rem;
    }
    
    .about-footer p {
        font-size: 1.2rem;
    }
}
