/* General body and typography styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Header styles */
header {
    background: #cc0022;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 28px;
}

/* Navigation styles */
nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #aad8ff;
}

/* Section styles */
section {
    padding: 20px;
    margin: 10px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

section h2 {
    color: #cc0022;
}

article {
    margin-bottom: 20px;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 20px 0;
    background: #cc0022;
    color: white;
    clear: both;
}

/* Form styling */
form {
    background: #ffffff;
    padding: 20px;
    border: 1px solid #ccc;
    margin-top: 20px;
}

form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background: #cc0022;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

form button:hover {
    background: #003399;
}

#about {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    line-height: 1.8;
}

#about p {
    margin-bottom: 20px;
    color: #555;
}

#about h2 {
    color: #cc0022;
    margin-bottom: 20px;
}
