/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #0A0F1B;
    color: #ffffff;
    margin: 0;
    padding-top: 80px; /* Space below fixed header */
}

/* Header Styling */
header {
    background-color: #0A0F1B;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #2196f3;
}

nav .logo img {
    width: 300px;  /* Adjust this value based on the preferred size */
    height: auto;
}

nav a.cta {
    background-color: #ff5722;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Main Content Container */
.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Head Section Styling */
.head {
    background-color: #006B38;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    margin-top: 20px; /* Adds space after header */
}

.head h1 {
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 10px;
}

.head p {
    font-size: 1.2em;
    color: #e0e0e0;
}

/* Announcement Section */
.announcement {
    background-color: #007583;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    position: relative; /* Allows positioning of button */
}

.announcement h2 {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 15px;
}

.announcement p {
    font-size: 1em;
    color: #e0e0e0;
}

/* Plus Button */
.expand-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    background-color: #ff5722;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.expand-btn:hover {
    background-color: #d94b1f;
}

/* Details Section */
.details {
    margin-top: 20px;
    display: none; /* Hide details section by default */
    background-color: #1C2029;
    padding: 15px;
    border-radius: 8px;
}

/* Sections Styling */
.section {
    background-color: #1C2029;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.section h2 {
    font-size: 1.6em;
    color: #006B38;
    margin-bottom: 10px;
}

.section p {
    font-size: 1em;
    color: #cccccc;
}


.section2 {
    padding: 100px 0;
}

.about, .contact {
    text-align: center;
}

.about h2, .contact h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.container2 {
    width: 85%;
    margin: 0 auto;
}

form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

form label {
    display: block;
    margin-bottom: 10px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: none;
}

form button {
    background-color: #2196f3;
    color: white;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #0056b3;
}

/* Footer Styling */
footer {
    background-color: #111;
    padding: 20px;
    text-align: center;
    color: white;
    margin-top: 50px;
    font-size: 0.9em;
}
