body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #e0f7fa;
}

/* General Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: #0288d1;
    color: white;
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-left img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.header-left h1 {
    margin: 0;
    font-size: 24px;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.menu a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    display: flex;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-image {
    flex: 1;
    background-image: url('/img/hero.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Slogan Box with Wave Transition */
.slogan-box {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: #c0e5bb;
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, #435c5f 0%, #0288d1 30%);
    background-size: 200% 100%;
}

.slogan-box img {
    width: 50%;
    height: auto;
}

.color-contrast {
    color: #1ea1dc;
    font-size: larger;
    font-weight: bold;
}

.slogan-box h2 {
    font-size: 3vw;
    text-align: center;
    margin: 0;
    position: relative;
    font-family: fantasy;
    z-index: 2;
}

/* About Section */
.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
}

h2 {
    font-size: 60px;
    padding: 20px 0;
    margin: 0;
}


.about-content {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.about-content-text {
    font-size: 16pt;
    line-height: 1.5em;
}

.about-text {
    width: 70%;
    padding: 40px 10px 40px 0;
}

.about-image {
    padding: 40px 10px 40px 0;
    width: 23%;
}

.about-content img {
    width: 100%;
    border-radius: 10px;
    object-fit: contain;
}


.publications, .offers {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
}

.offers-content {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.offers-content-text {
    font-size: 14pt;
    line-height: 1.5em;
}


.publications-content {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.publications-text {
    width: 70%;
    padding: 40px 10px 40px 0;
}

.publications-image {
    padding: 40px 10px 40px 0;
    width: 23%;
}

.publications-content img {
    width: 100%;
    border-radius: 10px;
    object-fit: contain;
}

.publications-content-text {
    font-size: 16pt;
    line-height: 1.5em;
}

.publications-example-content-text {
    font-size: 14pt;
    line-height: 1.5em;
    margin-top: 0;
}

/* Footer */
.footer {
    width: 100%; /* Full viewport width */
    background-color: #333; /* Distinctive dark color */
    color: white; /* Text color for contrast */
    padding: 20px; /* Spacing for better readability */
    text-align: center; /* Center align the text */
    margin-top: 20px; /* Add some space above footer */
    box-sizing: border-box; /* Ensures padding is included in width */
}

.footer p {
    margin: 0; /* Remove default margin */
    font-size: small;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
