/* 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;
    text-align: center;
}

.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;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.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-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;
}

/* Hero Section */
.hero {
    background-color: #007BFF;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.hero-content {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    line-height: 1.6;
}

/* Vision Section */
.vision {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.vision-content {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.vision h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.vision p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Principles Section */
.principles {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.principles h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

.principles-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.principle-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 30%;
    text-align: left;
}

.principle-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #007BFF;
}

.principle-card p {
    font-size: 1em;
    line-height: 1.5;
}

/* Newsletter Section */
.newsletter {
    padding: 50px 20px;
    background-color: #007BFF;
    color: #fff;
    text-align: center;
}

.newsletter h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.newsletter p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter-form input {
    padding: 10px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: #fff;
    color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #0056b3;
    color: #fff;
}

/* 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;
}