/* General Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header and Navigation */
header {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0056b3;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #0056b3;
}

/* Main Content and Sections */
main {
    width: 90%;
    margin: 2rem auto;
}

section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
}

section:last-of-type {
    border-bottom: none;
}

section h1, section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #0056b3;
}

#hero {
    text-align: center;
    background-color: #fff;
    padding: 4rem 1rem;
    border-radius: 8px;
}

#hero h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

#hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Section Cards */
.services-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.service-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.service-icon {
    width: 50px;
    height: 50px;
    fill: #0056b3;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #0056b3;
    font-size: 1.3rem;
}

/* About Section */
#about p {
    max-width: 800px;
    margin: 0 auto;
}

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