@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Roboto:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Lato', sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: #f0f8ff; /* Light blue background */
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 120px;
    background: #fff; /* Completely white navbar */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-size: 25px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

nav a {
    font-size: 18px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: #ff6a00;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px; /* Padding to avoid header overlap */
    min-height: calc(100vh - 100px); /* Adjust height accounting for header */
    padding: 20px; /* Add some padding for mobile devices */
}

.description-container {
    flex: 1;
    text-align: left;
    padding: 20px;
    max-width: 600px; /* Constrain width for better readability */
    margin-right: 40px; /* Add space between text and image */
    z-index: 100;
    font-family: 'Roboto', sans-serif; /* Use Roboto font */
}

.description-container b {
    font-size: 45px;
    color: #003366; /* Dark blue color */
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center; /* Center text within the container */
    display: block;
}

.img-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-container img {
    width: 400px;
    height: 550px; /* Square image */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Darker and wider shadow */
}

@media (max-width: 768px) {
    .main-container {
        flex-direction: column-reverse; /* Description first, image second on mobile */
        align-items: center; /* Center content on mobile */
    }

    .description-container, .img-container {
        width: 100%;
        text-align: center;
        padding: 20px;
    }

    .img-container img {
        margin-bottom: 20px;
    }
}
