/* General Body Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: #333;
    color: #fff;
    padding-top: 20px;
    min-height: 70px;
    border-bottom: #77aaff 3px solid;
}

header h1 {
    float: left;
    margin: 0;
    padding: 0;
}

header nav {
    float: right;
    margin-top: 10px;
}

header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 15px;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header a:hover {
    color: #77aaff;
    font-weight: bold;
}

/* Hero Section */
.hero {
    min-height: 400px;    background: #555; /* No image as per user request */    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 0;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    max-width: 700px;
}

/* Article and Content Sections */
.article-section, .content-section {
    padding: 40px 0;
    background: #fff;
    margin-bottom: 20px;
    border-bottom: #ccc 1px solid;
}

.article-section article, .content-section div {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.article-section h2, .content-section h2 {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.article-section h3, .content-section h3 {
    color: #555;
    margin-top: 25px;
    margin-bottom: 15px;
}

.article-section p, .content-section p, .article-section ul, .content-section ul {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.article-section a, .content-section a {
    color: #77aaff;
    text-decoration: none;
}

.article-section a:hover, .content-section a:hover {
    text-decoration: underline;
}

.article-section ul, .content-section ul {
    list-style: disc;
    margin-left: 20px;
}

.article-section li, .content-section li {
    margin-bottom: 8px;
}

/* Contact Form Styles */
form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="date"],
form input[type="number"],
form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

form textarea {
    resize: vertical;
}

form button {
    display: block;
    width: 100%;
    padding: 10px;
    background: #333;
    color: #fff;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
}

form button:hover {
    background: #77aaff;
}

/* Footer Styles */
footer {
    padding: 20px;
    margin-top: 20px;
    color: #fff;
    background-color: #333;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    header h1,
    header nav {
        float: none;
        text-align: center;
    }

    header nav ul li {
        display: block;
        padding: 10px 0;
    }

    .hero h2 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }
}
