/* Define color variables */
:root {
    --primary-color: #12343b; /* Teal */
    --secondary-color: #c89666; /* Dark Blue */
    --accent-color: #e76f51; /* Coral */
    --background-color: #f4f4f9; /* Light Grey */
    --text-color: #333; /* Dark Grey */
}

/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0; /* Increased padding for larger header */
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem; /* Increased font size for larger header */
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 0;
}

nav li {
    margin: 0 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    color: var(--accent-color);
}

main {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

section h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

section p, section ul {
    line-height: 1.6;
}

section ul {
    padding-left: 1rem;
}

footer {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 0.5rem 0; /* Reduced padding for smaller footer */
    position: fixed;
    width: 100%;
    bottom: 0;
}

input[type="text"], input[type="email"], select, textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"] {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
}

input[type="submit"]:hover {
    background-color: var(--secondary-color);
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.logo {
    max-height: 80px; /* Increased height for larger logo */
    margin-right: 1rem;
}

header h1 {
    font-size: 2.5rem; /* Increased font size for larger header */
    margin: 0;
    color: white;
}

/* Responsive Styles */
@media (max-width: 600px) {
    .logo {
        max-height: 60px; /* Adjusted for smaller screens */
    }
    
    header h1 {
        font-size: 1.5rem;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav li {
        margin: 0.5rem 0;
    }
}

/* Card Styles */
.card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

#mission-section {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}
