.damage-section {
    background-color: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 1rem;
}

.damage-video {
    max-width: 100%;
    max-height: 600px; /* was 450px */
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.damage-title {
    font-size: 2.8rem; /* was 2rem */
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.3;
}

.damage-text {
    font-size: 1.3rem; /* was 1.1rem */
    color: #dddddd;
    line-height: 1.9; /* was 1.75 */
    margin-bottom: 1.5rem;
}

@media (max-width: 1280px) {
    .damage-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .damage-section {
        padding: 4rem 1rem;
    }
    .damage-title {
        font-size: 1.8rem;
    }
    .damage-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .damage-title {
        font-size: 1.5rem;
    }
    .damage-text {
        font-size: 0.9rem;
    }
}
