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

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: #1a2a44;
    color: #fff;
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo h1 {
    margin: 0;
    font-size: 2rem;
    color: #f4c430;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #1a2a44, #2e4a7d);
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.cta-button {
    display: inline-block;
    background: #f4c430;
    color: #1a2a44;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.cta-button:hover {
    background: #e0b028;
}

/* Services Section */
.services {
    padding: 3rem 0;
    background: #f9f9f9;
}

.services h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 3rem 0;
    text-align: center;
}

.about h2 {
    margin-bottom: 1rem;
}

.about p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Contact Section */
.contact {
    background: #1a2a44;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.contact h2 {
    margin-bottom: 1rem;
}

.contact p {
    margin-bottom: 2rem;
}

.contact a {
    color: #f4c430;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #0f1a2e;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

footer a {
    color: #f4c430;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}
