/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

nav {
    background-color: #2563EB;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: white;
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #10B981;
    color: white;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #2563EB;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
}

.features {
    display: flex;
    justify-content: space-around;
    padding: 2rem;
    flex-wrap: wrap;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    width: 30%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
}

.blog-card {
    background: white;
    padding: 1.5rem;
    margin: 1rem auto;
    width: 80%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact form {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 2rem auto;
}

.contact input, .contact textarea {
    margin: 0.5rem 0;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact button {
    background-color: #2563EB;
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #2563EB;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
    }
    .feature-card {
        width: 90%;
    }
    .contact form {
        width: 90%;
    }
}