.left-text {
    font-family: 'Stoneage', sans-serif;
}

.content-section {
    max-width: 800px;
    margin: 60px auto 120px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

.scrollable-content {
    margin-top: 6%;
}

.content-section h1 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #60AAFF;
    text-align: center;
    margin-bottom: 20px;
}

.content-section h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-section p {
    line-height: 1.6;
    color: #ffffff;
}

.highlight {
    font-size: 1.2rem;
    color: #60AAFF;
    font-weight: bold;
    margin-top: 20px;
}

@media (max-width: 576px) {
    .content-section {
        margin: 80px 5px 100px;
    }

    .content-section h1 {
        font-size: 1.6rem;
    }

    .content-section h2 {
        font-size: 1.2rem;
    }

    .content-section p {
        font-size: 0.9rem;
    }

    .berg-container,
    .logo-container {
        display: none;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}