/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Header and Navigation */
header {
    background-color: white;
    color:black;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin-left: 1.5rem;
}

.menu a {
    color: black;
    text-decoration: none;
    transition: color 0.3s;
}

.menu a:hover, .menu a.active {
    color: #3498db;
}

/* Main Content */
main {
    padding: 2rem 0;
    min-height: calc(100vh - 160px);
}

section {
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h1, h2, h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Forms */
.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

input, textarea, select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2980b9;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #3498db;
}

.copyright {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #34495e;
}

/* Additional Styles */
.features-grid {
    display: grid;

    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature {
    padding: 1.5rem;
    background: #f0f8ff;
    border-radius: 5px;
}

.news-item {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.read-more {
    color: #3498db;
    text-decoration: none;
}

.contact-content {
    display: grid;
   
    gap: 2rem;
    margin-top: 1.5rem;
}

.contact-info {
    padding: 1.5rem;
    background: #f0f8ff;
    border-radius: 5px;
}

.login-link {
    margin-top: 1.5rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .menu {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .contact-content {
       
    }
}