/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
    line-height: 1.6;
}

/* Header Section */
header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

.header-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 2em;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    color: #007BFF;
}

.custom-link {
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.5em; /* Double the size of the current font */
}

.custom-link:hover {
    color: #f0f0f0; /* Optional: Change color on hover */
    text-decoration: none; /* Optional: Add underline on hover */
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #444; /* Darker background for dropdown */
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #007BFF; /* Blue background on hover */
    color: #fff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Corporate Section */
.corporate {
    padding: 60px 20px;
    background-color: #007BFF;
    color: #fff;
    text-align: center;
}

.corporate-content {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.corporate h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.corporate p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.corporate-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.corporate-form input {
    padding: 10px;
    width: 100%;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.corporate-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1em;
}

.corporate-form button {
    padding: 10px 20px;
    background-color: #fff;
    color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.corporate-form button:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Checkbox Label Styles */
.checkbox-label {
    display: flex;
    align-items: center; /* Align checkbox and text vertically */
    gap: 10px; /* Space between checkbox and text */
    font-size: 1em;
    color: #333; /* Text color */
    cursor: pointer; /* Change cursor to pointer on hover */
}

.checkbox-label input[type="checkbox"] {
    margin: 0; /* Remove default margin */
    width: 16px; /* Set checkbox width */
    height: 16px; /* Set checkbox height */
    cursor: pointer; /* Change cursor to pointer on hover */
}

/* Footer Section */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

footer h2 {
    margin: 0;
    font-size: 1.5em;
}

footer nav {
    margin-top: 10px;
}

footer nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

footer nav a:hover {
    color: #007BFF;
}