/* General Reset */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    background: #0044cc;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header .nav-links {
    list-style: none;
    display: flex;
}

header .nav-links li {
    margin-left: 20px;
}

header .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

/* Hero Section */
#hero {
    background: #f4f9ff;
    text-align: center;
    padding: 50px 20px;
}

#hero h1 {
    font-size: 36px;
    color: #0044cc;
    margin-bottom: 10px;
}

#hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

#hero .btn {
    background: #0044cc;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Section Styles */
section {
    padding: 20px;
    margin: 20px 0;
}

.section-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.text {
    flex: 1;
}

.image-placeholder img {
    max-width: 100%;
    border-radius: 10px;
}

#services .services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

#services .service-card {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#services .service-card img {
    margin-bottom: 10px;
    border-radius: 50%;
}

/* Footer */
footer {
    background: #0044cc;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-container {
        flex-direction: column;
        align-items: center;
    }

    #services .service-card {
        width: 100%;
    }
}
