/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    scroll-behavior: smooth;
}

/* Header */
header {
    background: linear-gradient(135deg, #1f3c88, #12264f);
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

/* Navigation */
nav {
    background: #12264f;
    padding: 15px 0;
    text-align: center;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
nav ul li {
    display: inline;
    margin: 0 20px;
}
nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #1f78c1;
}

/* Container */
.container {
    width: 85%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Sections */
section {
    padding: 60px 0;
    background: #ffffff;
    margin: 30px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

/* Headings */
h2 {
    color: #1f3c88;
    font-size: 2rem;
}

/* Service Boxes */
.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
}
.services-list div {
    background: #eef1f7;
    margin: 10px;
    padding: 15px;
    border-radius: 8px;
    width: 45%;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Blog Post Styles */
.blog-post {
    background: #eef1f7;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: auto;
    padding: 20px;
}
.contact-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
}
.contact-form button {
    background: #1f3c88;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}
.contact-form button:hover {
    background: #1f78c1;
}

/* Footer */
footer {
    background: #12264f;
    color: #ffffff;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}
