.statement-section {
    background: rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    width: 100%;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
}

.statement-section .container {
    width: 100%;
    max-width: 1400px;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.statement-section .floating-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.statement-content {
    width: 100%;
    padding: 3rem;
    text-align: center;
    padding-top: 1rem;
}

.statement-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.statement-text {
    font-size: 1.2rem;
    opacity: 0.8;
    line-height: 1.8;
    text-align: left;
}

@media (max-width: 768px) {
    .statement-content {
        padding: 2rem;
    }
    
    .statement-content h2 {
        font-size: 2rem;
    }
    
    .statement-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .statement-section {
        padding: 3rem 0;
    }
    
    .statement-section .container {
        padding: 0 1rem;
    }
    
    .statement-content {
        padding: 1.5rem;
    }
} 