/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Header */
.site-header {
    background-color: #5DADE2; /* Light Blue */
    color: #fff;
}

.top-contact {
    display: flex;
    justify-content: flex-end;
    padding: 5px 20px;
    font-size: 14px;
    background-color: #5499C7; /* Slightly darker light blue */
}

.top-contact span {
    margin-left: 15px;
}

.top-contact a {
    color: #fff;
    text-decoration: none;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo img {
    height: 50px;
}

.logo .website-url {
    display: block;
    font-size: 12px;
    color: #fff;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Banner */
.banner {
    position: relative;
    text-align: center;
}

.banner img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.banner-text h1 {
    font-size: 36px;
    background-color: rgba(0,0,0,0.3);
    padding: 10px 20px;
}

/* About Us */
.about-us {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background-color: #f2f2f2;
}

.about-content {
    display: flex;
    max-width: 1200px;
    gap: 20px;
    flex-wrap: wrap;
}

.about-content img {
    width: 50%;
    height: auto;
}

.about-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #2C3E50;
    color: #fff;
    padding: 30px 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 40px;
}

.footer-contact p {
    margin: 5px 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}
