/* Styling for the whole page */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
}

.main-container {
    width: 100%;
    max-width: 1200px;
    padding: 20px,20px,20px,20px;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between containers */
}

/* 1st Container (Divided by 3) */
.first-container {
    display: flex;
    background-color: white;
    align-items: center; /* Aligns items vertically in the center */
    #gap: 20px; /* Space between logo and text */
    padding: 20px;
}
.first-half, .second-half {
    flex: 1; /* Each half takes 1 part of 3 */
    background: #ffffff;
    padding: 20px;
    max-width: 20%;
    #border-radius: 10px;
    #box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.second-half {
    flex: 4; /* Each half takes 1 part of 3 */
    background: #ffffff;
    padding: 20px;
    max-width: 50%;
    #border-radius: 10px;
    #box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.third-half {
    flex: 3; /* Each half takes 1 part of 3 */
    justify-content: center; /* Center horizontally */
    text-align: center;
    align-items: flex-start; /* Align to the top */
    height:auto; /* Adjust height as needed */
    background: orange;
    #padding: 20px;
    max-width: 30%;
    border-radius: 10px;
    #box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    border: 1px solid #ccc; /* Optional, for visibility */
}
.text-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: flex-start; /* Align to the top */
    height:auto; /* Adjust height as needed */    
    flex: 1; /* Each half takes 1 part of 2 */
    background: orange;
    #padding: 20px;
    max-width: 100%;
    border-radius: 10px;
    #box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    border: 1px solid #ccc; /* Optional, for visibility */
}

.logo {
    width: 190px; /* Adjust the size as needed */
    height: auto;

}
.under-construction {
    width: 150px; /* Adjust the size as needed */
    height: auto;
    padding: 20px;
    align-self: flex-end;

} 
    

/* 2nd Container (Full Width) */
.second-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Align to the top */
    width: 100%;
    background: #f7f7f7;
    padding: 0px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* 3rd Container (Divided by 4) */
.third-container {
    display: flex;
    gap: 20px;
}
.third-part {
    flex: 1; /* Each part takes 1 part of 4 */
    background: #e0e0e0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 4th Container (Divided by 3) */
.fourth-container {
    display: flex;
    gap: 20px;
}
.fourth-part {
    flex: 1; /* Each part takes 1 part of 3 */
    justify-content: center; /* Center horizontally */
    align-items: flex-start; /* Align to the top */
    background: #d1d1d1;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* 5th Container (Full Width) */
.copyright {
    width: 100%;
    background: #f7f7f7;
    #padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
/* Text styling */
.text-content h1 {
    font-family: Montserrat;
    font-size: 2em;
    text-align: center;
    color: blue;
    margin: 0;
}
.text-content h2 {
    font-family: Montserrat;
    font-size: 2em;
    text-align: center;
    color: red;
    margin: 0;
}
.text-content p {
    font-family: Montserrat;
    margin: 0;
    font-size: 1.2em;
    text-align: center;
    color: #555;
}

.p {
    word-break: break-word;
    white-space: normal;
    hyphens: auto;
}

h1 {
color: black;
}
h3 {
    color: black;
    #text-align: center;
    
    }
    


/* Responsive Design for smaller screens */
@media (max-width: 768px) {
    .first-container, .third-container, .fourth-container {
        flex-direction: column; /* Stack the parts vertically */
        width: 100%;
        font-size: 1.2em;
    }
}
