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

/* Header and Navigation */
header {
    background: #fff;
    color: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

nav {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

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

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #007BFF;
}

/* Main Content */
main {
    width: 80%;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Hero Section */
.hero {
    background: #007BFF;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 8px;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background: #fff;
    color: #007BFF;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #eef;
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

.feature {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    flex-basis: 30%;
}

.feature h2 {
    font-size: 1.5rem;
    color: #007BFF;
}

/* Page Title Section */
.page-title {
    text-align: center;
    margin-bottom: 2rem;
}

.page-title h1 {
    font-size: 2.2rem;
    color: #333;
}

.page-title p {
    font-size: 1.1rem;
    color: #666;
}

/* Content Section */
.content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.post-preview {
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.post-preview:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.post-preview h2 {
    color: #007BFF;
}

.post-preview a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.about-us p, .privacy-policy p {
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content ul {
    list-style: none;
    padding: 0;
}

.footer-content ul li {
    display: inline;
    margin: 0 10px;
}

.footer-content ul li a {
    color: #fff;
    text-decoration: none;
}
