* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #ffff00;
}

.announcement {
    background-color: #00ff00;
    color: #000;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
}

.navbar .logo img {
    height: 40px;
    width: auto;
    vertical-align: middle;
}

.navbar nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 16px;
}

.navbar nav a:hover {
    text-decoration: underline;
    text-decoration-color: #b4a047;
}

main {
    flex: 1;
}

.hero {
    background-image: url('header.png'); 
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.icons img {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s;
    border-radius: 8px;
}

.icons img:hover {
    transform: scale(1.1);
}

.info {
    background-color: #ffff00;
    color: #000;
    padding: 40px 20px;
    text-align: center;
}

.info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.info p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: auto;
}

footer p {
    margin-bottom: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

footer p:last-child {
    margin-bottom: 0;
}
