* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal scrollbar */
html, body {
    overflow-x: hidden; /* Hide horizontal scrollbar */
}

/* General body styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.header-left h1 {
    font-size: 24px;
    color: black;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-right a {
    margin: 0 10px;
    color: black;
    text-decoration: none;
    font-size: 14px;
}

.header-right a:hover {
    text-decoration: underline;
}

.login-button {
    background-color: black;
    color: white;
    border: 2px solid white;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    margin-left: 10px;
}

.login-button:hover {
    opacity: 0.8;
}

.logout-button {
    background-color: black;
    color: white;
    border: 2px solid white;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    margin-left: 10px;
}

.logout-button:hover {
    opacity: 0.8;
}

/* Section Styles */
.section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    min-height: 100vh;
    border-bottom: 1px solid black; /* Add border between sections */
}

/* Video Section Styles */
.video-section {
    position: relative;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw; /* Ensure video covers full viewport width */
    height: 100vh; /* Ensure video covers full viewport height */
    object-fit: cover;
    z-index: -1;
}

.video-overlay {
    position: relative;
    z-index: 1; /* Ensure overlay is above video */
    text-align: center;
    color: white;
    max-width: 90%; /* Ensure overlay text does not exceed section width */
    margin: 0 auto; /* Center overlay text */
}

.video-overlay h2 {
    font-size: 64px;
    font-weight: bold;
}

.video-overlay p {
    font-size: 20px;
    margin: 10px 0;
}

/* Footer Styles */
footer {
    background-color: #111;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the top */
    padding: 20px;
    border-top: 1px solid black; /* Border at the top of the footer */
    height: auto; /* Adjust height */
}

.footer-left {
    flex: 1;
    padding-right: 20px;
    position: relative; /* Ensure relative positioning for alignment */
}

.footer-left h2 {
    font-size: 24px;
}

.footer-left p {
    font-size: 14px;
    margin-bottom: 10px; /* Add space between lines */
}

.footer-left .copyright {
    margin-top: 20px; /* Space at the bottom */
}

.facebook-button {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    margin: 10px 0;
}

.facebook-button img {
    width: 20px; /* Adjust size of the Facebook icon */
    height: auto;
}

/* Footer right section */
.footer-right {
    flex: 1;
    text-align: left; /* Align text to the left */
    position: relative; /* Ensure relative positioning for alignment */
    left: 25%; /* Move content to the right by 25% */
}

.footer-right h2 {
    font-size: 24px;
}

.footer-right p {
    font-size: 14px;
    margin-bottom: 10px; /* Add space between lines */
}

/* Newsletter Form Styles */
.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the left */
}

.newsletter-form input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 40%; /* Reduce length of the input field */
    margin-bottom: 10px; /* Space between email input and button */
}

.subscribe-button {
    background-color: transparent; /* Transparent background */
    color: white;
    border: 2px solid white;
    border-radius: 25px;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    width: 20%; /* Reduce length of the button */
}

.subscribe-button:hover {
    opacity: 0.8;
}

/* Form Box Styles */
.form-box {
    background-color: #e6f7ff; /* Light blue background */
    padding: 20px;
    border-radius: 10px; /* Round corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for the form box */
    max-width: 600px; /* Limit the maximum width of the form box */
    margin: 0 auto; /* Center align the form box */
}

.form-box label {
    display: block;
    margin-bottom: 10px;
    color: black; /* Text color for labels */
}

.form-box input,
.form-box textarea {
    width: 100%;
    padding: 20px; /* Make input fields x2 larger */
    margin-bottom: 20px; /* Space between input fields */
    border: 2px solid #ddd;
    border-radius: 10px; /* Round corners */
    background-color: #e6f7ff; /* Light blue background */
    color: black; /* Black text */
    font-size: 16px; /* Increase font size */
}

.form-box textarea {
    height: 150px; /* Adjust height for text area */
}

.form-box button {
    background-color: black;
    color: white;
    border: 2px solid white;
    border-radius: 10px; /* Round corners */
    padding: 20px; /* Make button x2 larger */
    font-size: 16px; /* Increase font size */
    cursor: pointer;
    width: 100%; /* Full width button */
}

.form-box button:hover {
    opacity: 0.8;
}
