
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F4F4F4;
    color: #333;
}

.hero {
    background: linear-gradient(135deg, #007B82, #ea5b10);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero .logo {
    max-width: 250px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #FF7A33;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

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

.about {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.about h2 {
    font-family: 'Montserrat', sans-serif;
    color: #007B82;
    font-size: 2.2em;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
}

.contact {
    padding: 60px 20px;
    background-color: #F4F4F4;
    text-align: center;
}

.contact h2 {
    font-family: 'Montserrat', sans-serif;
    color: #007B82;
    font-size: 2.2em;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
}

.contact a {
    color: #007B82;
    text-decoration: none;
    font-weight: bold;
}


.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 400px;
    text-align: left;
}

.service-icon {
    width: 50px;
    height: 50px;
}

.service-item h4 {
    font-size: 1.1em;
    color: #222;
    margin-bottom: 5px;
}

.service-item p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.4;
}

