body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

header {
    background-color: #1e88e5;
    padding: 20px;
    color: white;
    text-align: center;
}

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

h1 {
    font-size: 32px;
    margin: 0;
}

.subtitle {
    font-size: 18px;
    margin-top: 10px;
    color: #bbdefb;
}

.contact {
    margin-top: 10px;
    font-size: 14px;
}

.contact .phone, .contact .email {
    display: block;
}

nav {
    background-color: #1565c0;
    padding: 10px;
    text-align: center;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: inline-block;
    margin-right: 20px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: background-color 0.3s;
}

.nav-menu a:hover {
    background-color: #0d47a1;
}

.hero-section {
    position: relative;
    text-align: center;
    color: white;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-button {
    background-color: #ffca28;
    color: #0d47a1;
    padding: 15px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #ffd740;
}

main {
    padding: 40px;
}

.about, .services {
    margin-bottom: 40px;
}

.service-item {
    margin-bottom: 20px;
}

footer {
    background-color: #1e88e5;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}
