* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto, sans-serif;
    font-weight: 350;
}

body {
    line-height: 1.6;
}

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

/* Header styles */
header {
    background-color: #536265;
    padding: 5px 0 5px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    color: #ccc;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0078ff;
}

.active {
    color: #0078ff !important;
}

/* Hero section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-box {
    position: absolute;
    right: 10%;
    color: #000000;
    padding: 40px;
    max-width: 400px;
    backdrop-filter: blur(30px);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 30px;
}

.info-box-left {
    position: absolute;
    left: 10%;
    top: 50%;
    right: 10%;
    color: #ffffff;
    padding: 40px;
    max-width: 400px;
    backdrop-filter: blur(30px);
    transform: translateY(-50%);
    border-radius: 30px;
}

.info-box h2 {
    font-size: 28px;
}

.image-credit {
    font-size: 14px;
    margin-top: 20px;
    color: #333;
}

.image-credit a {
    color: #333;
    text-decoration: underline;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    border: 2px solid #333;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #333;
    color: #fff;
}

/* Footer */
footer {
    margin: 20px 0;
    display: flex;
    justify-content: space-around;
    width: 100%;
    background-color: transparent;
    text-align: center;
    color: #000;
}

.footer-links {
}

.footer-links a {
    color: #49200d;
    margin: 0 10px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}
