.censorship-section {
    padding: 6rem;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: 12rem;
}

.censorship-section h1 {
    font-size: 6rem;
    font-weight: 900;
    text-align: left;
    padding-top: 0;
    padding-bottom: 0rem;
    color: #fff;
}

.censorship-section img {
    height: 60rem;
}

/* Tablet breakpoint */
/* @media (max-width: 1200px) {
    .censorship-section {
        padding: 4rem;
        margin-top: 8rem;
    }
    
    .censorship-section h1 {
        font-size: 5rem;
    }
    
    .censorship-section img {
        height: 50rem;
    }
} */

/* Mobile landscape - still showing text but reducing sizes */
@media (max-width: 1200px) {
    .censorship-section {
        padding: 3rem;
        margin-top: 6rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .censorship-section h1 {
        font-size: 4rem;
        text-align: center;
        margin-bottom: 3rem;
        display: none;
    }
    
    .censorship-section img {
        height: 40rem;
    }
}

/* Mobile portrait - hide text, show only centered image */
@media (max-width: 600px) {
    .censorship-section {
        padding: 2rem;
        margin-top: 4rem;
        justify-content: center;
        align-items: center;
    }
    
    .censorship-section h1 {
        display: none;
    }
    
    .censorship-section img {
        height: 35rem;
        max-width: 100%;
        object-fit: contain;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .censorship-section {
        padding: 1.5rem;
        margin-top: 3rem;
    }
    
    .censorship-section img {
        height: 28rem;
    }
}

/* Very small devices */
@media (max-width: 360px) {
    .censorship-section {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .censorship-section img {
        height: 22rem;
    }
}