* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    background-color: #eae6de;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #157759;
    color: white;
}

.bottom-header {
    display: flex;
    padding: 10px;
    background-color: #1e9b75;
    color: white;
}

.buttons {
    display: flex;
    gap: 15px;
}

.buttons a {
    display: inline-block;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.buttons a:hover {
    background-color: #004d33;
}

header .language button {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
}

/* Video Container */
.video {
    width: 100%;
    height: 750px;
    margin: 0;
    padding: 0;
    display: block;
    flex-grow: 1;
}

/* Footer Section */
footer {
    background-color: #157759;
    padding: 20px 0;
    text-align: center;
    color: white;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-icons a {
    display: inline-block;
    transition: transform 0.2s ease;
}

.footer-icons a:hover {
    transform: scale(1.1);
}
