/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Color Scheme */
:root {
    --primary-color: #222a4b; /* Navy Blue */
    --accent-color: #c4362b;  /* Red */
    --tertiary-color: #4997BD; /* Light Blue */
    --light-gray: #f4f4f4;
}

/* Base Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--light-gray);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
}

/* Header */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
}

header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 50px #3642707c);
    /* transition: filter 0.3s ease; */
}


header h1 {
    text-align: center;
    margin-bottom: 10px;
}

nav {
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

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

/* Hero Section */
.hero {
    background-color: var(--accent-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
}

/* Content Sections */
.content-section {
    background: white;
    padding: 40px 0;
    margin-bottom: 20px;
    border-radius: 8px;
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.content-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.content-section p, .content-section ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: auto;
}

input, textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
}

button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: var(--tertiary-color);
}

input.invalid {
    border-color: red;
}

/* Footer */
footer {
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
    font-size: 0.9rem;
}
