/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Arial', sans-serif;
}

/* Header Styles */
header {
    background-color: #007bff;
    color: white;
    padding: 10px;
    text-align: center;
}

header h1 {
    font-size: 28px;
    margin: 0;
}

/* Navigation Styles */
nav {
    display: flex;
    justify-content: center;
    background-color: #0056b3;
    padding: 10px 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-size: 16px;
}

nav a:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* Container for Content */
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    background-color: #007bff;
    color: white;
    padding: 20px;
    text-align: center;
}

.hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 16px;
}

/* Section Styles */
section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

section p {
    font-size: 16px;
    color: #555;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Buttons */
button, .cta-buttons a {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px 0;
    display: inline-block;
    transition: background-color 0.3s;
}

button:hover, .cta-buttons a:hover {
    background-color: #0056b3;
}

/* Form Styles */
form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form input[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
    }

    nav a {
        margin: 5px 0;
    }

    .container {
        padding: 15px;
    }

    .cta-buttons {
        text-align: center;
    }

    .cta-buttons a {
        display: block;
        margin: 10px 0;
    }
}
