body {
    font-family: 'Inter', sans-serif;
    background-color: #f7fbff;
    margin: 0;
    padding: 0;
    color: #1f3b57;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 10vw;
    background-color: #e3f2fd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar h1 a {
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1976d2;
}

.navbar nav a {
    text-decoration: none;
    color: #1976d2;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar nav a:hover {
    color: #0d47a1;
}

.welcome-section {
    text-align: center;
    padding: 2rem 1rem 1rem; /* Less top and bottom padding */
}

.welcome-section img {
    max-width: 500px;   /* Smaller image */
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: block;
    margin: 0 auto;
}

.text-section {
    text-align: center;
    padding: 1rem 1rem; /* Reduce space around text */
    font-size: 1.1rem;
    color: #37474f;
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
    box-sizing: border-box;
}

header.navbar {
    background-color: #e3f2fd;
    padding: 1rem 10vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

h1, p {
    margin: 0;
}

.text-section p {
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
    font-size: 1.2rem;
    color: #37474f;
}

@media screen and (max-width: 768px) {
    header.navbar {
        flex-direction: column;
        text-align: center;
    }

    .navbar nav a {
        margin-left: 1rem;
        margin-top: 0.5rem;
    }

    .text-section p {
        padding: 0 1rem;
    }
}

