<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    
}

/* Main Content Section */
.container {
    display: flex;
    padding: 30px;
    justify-content: center;
    min-height: 90vh;
}
 
.content {
    max-width: 800px;
    text-align: justify;
    padding: 0 16px;
}
 
.content h2 {
    font-size: 3rem;
    margin-bottom: 28px;
    margin-top: 20px;
    text-align: left;
    line-height: 50px;
}
 
.content div {
    font-size: 20px;
    line-height: 35px;
}

.upper-div {
    margin-top: 20px;
}


.content img {
    width: 100%; 
    height: 520px; 
    object-fit: fill; 
    margin-bottom: 30px; 
    margin-top: 30px;
}



@media only screen and (max-width: 800px) {
    .container {
        padding: 15px;  
    }
    .content {
        padding: 0 10px;  
    }
    .content h2 {
        font-size: 2.5rem;  
        margin-bottom: 20px;  
        margin-top: 15px;  
        line-height: 40px;  
    }
    .content div {
        font-size: 18px;  
        line-height: 30px; 
    }

    .content img {
        height: auto;  
        max-height: 350px; 
        margin-bottom: 30px; 
        margin-top: 30px;   
    }

    .content button {
        width: 100%; 
        padding: 12px;  
        font-size: 16px;  
        margin-top: 15px;  
    }
}

@media only screen and (max-width: 420px) {
    .container {
        padding: 10px;  
    }
    .content {
        padding: 0 5px;  
    }

    .content h2 {
        font-size: 2rem;  
        margin-bottom: 15px;  
        margin-top: 10px;  
        line-height: 35px;  
    }

    .content div {
        
        margin-bottom: 20px;  
    }

    .content img {
        max-height: 300px; 
        margin-bottom: 20px; 
        margin-top: 15px;  

    .content button {
        width: 100%;  
        padding: 10px;  
        font-size: 14px;  
        margin-top: 10px; 
    }
}
}
</pre></body></html>