.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 2rem;
}

.section-header.center-aligned {
    text-align: center;
}

.section-header.center-aligned p {
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    background: linear-gradient(90deg, #00FFB2 0%, #7B61FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.header-underline {
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin-top: 1rem;
    margin-bottom: 2rem;
    border-radius: 2px;
}

/* Arrow icon style */
.arrow-icon {
    font-size: 1.5rem;
    line-height: 1;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-surface);
    color: var(--color-primary);
    border: 1px solid rgba(0, 255, 178, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top i {
    font-size: 1.2rem;
}

.scroll-to-top:hover {
    background-color: var(--color-background-light);
    color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 255, 178, 0.3);
    transform: translateY(-2px);
}

/* Remove the media queries that didn't work */
@media (max-width: 768px) {
    .section-container {
        padding: 3rem 1.5rem;
        display: flex;
        flex-direction: column;
    }

    .section-header {
        order: -1; /* Ensure headers always appear at the top */
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 2.5rem 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
} 