
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f7f9fb;
    color: #333;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #0077b6;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.navbar .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar .nav-links li a:hover {
    color: #f38609;
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 2rem;
    background-color: #fff;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0077b6;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #f38609;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #d26d05;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
}

/* Services Section */
.services {
    padding: 3rem 2rem;
    background-color: #f7f9fb;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #0077b6;
}

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

.service-card {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #0077b6;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
}

/* About Section */
.about {
    padding: 3rem 2rem;
    background-color: #fff;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0077b6;
}

.about p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 3rem 2rem;
    background-color: #f7f9fb;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0077b6;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact label {
    font-size: 1rem;
    color: #444;
}

.contact input,
.contact textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.contact input:focus,
.contact textarea:focus {
    outline: none;
    border-color: #0077b6;
    box-shadow: 0 0 0 2px rgba(0, 119, 182, 0.2);
}

.btn-secondary {
    padding: 0.75rem 1.5rem;
    background-color: #0077b6;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #005f8b;
}

/* Footer */
footer {
    padding: 1rem 2rem;
    background-color: #0077b6;
    color: #fff;
    text-align: center;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

    .hero-content, .hero-image {
        max-width: 100%;
    }

    .navbar .nav-links {
        display: none;
        flex-direction: column;
        background-color: #0077b6;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        text-align: left;
        padding: 1rem;
    }

    .navbar .nav-links li {
        margin-bottom: 1rem;
    }

    .navbar .nav-links li:last-child {
        margin-bottom: 0;
    }
}
