* {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1b4f43ff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: white;
    color: black;
    padding: 20px 0;
    position: relative;
}

h1 {
    margin: 0;
    font-size: 2.5em;
    text-align: center;
}

.hamburger {
    display: none; /* Hidden by default */
    cursor: pointer;
    font-size: 1.5em;
    position: absolute;
    right: 20px;
    top: 20px;
}

nav {
    text-align: center;
}

.divx {
   text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

.info-section {
    margin: 30px 0;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #4CAF50;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin: 10px 0 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45a049;
}

footer {
    text-align: center;
    padding: 15px;
    background-color: #4CAF50;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}

.social-media a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block; /* Show hamburger icon */
    }
    nav ul {
        display: none; /* Hide the menu by default */
        flex-direction: column; /* Stack menu items */
        position: absolute; /* Position it */
        background-color: #4CAF50; /* Background color for dropdown */
        width: 100%;
        top: 60px; /* Position below the header */
        left: 0;
        z-index: 1;
    }
    nav ul li {
        display: block; /* Display items block for vertical layout */
        margin: 10px 0; /* Add spacing */
    }
    nav.active ul {
        display: flex; /* Show menu when active */
    }
}
