.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding: 0 50px;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
    animation-delay: 1s;
}

.about-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 50%;
    font-family: "Merriweather", serif;
    font-weight: 700;
    filter: drop-shadow(0 0 0.85rem black) drop-shadow(0 0 1.4rem #000000ff);
}

.about-title {
    font-size: var(--text-size-title);
    font-weight: 100;
    padding: 0;
    margin: 0;
    color: #fff;
    line-height: 1em;
    margin-bottom: 20px;
}

.about-text {
    font-size: var(--home-subtitle);
    font-weight: 100;
    padding: 0;
    margin: 0;
    color: #fafaff;
    line-height: 1.5;
    margin-bottom: 20px;
}

.about-next-subtitle {
    font-size: var(--home-subtitle);
    padding: 0;
    margin: 0;
    color: #fafaff;
    margin-top: 2rem;
}

.about-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}

.about-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}