/* styles.css */

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

.header-top {
    background-color: #004080;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}

.header-top .logo {
    height: 50px;
}

.header-top .contact-info .phone {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

.header-top .contact-info .phone i {
    margin-right: 5px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: #343a40;
    padding: 10px 0;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.banner img {
    width: 100%;
    height: auto;
}

main {
    padding: 20px;
}

.intro {
    text-align: center;
    background-color: #004080;
    color: white;
    padding: 50px 20px;
}

.intro h1 {
    font-size: 3em;
}

.intro p {
    font-size: 1.2em;
    margin: 20px 0;
}

.cta-button {
    background-color: #ff6f61;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
}

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

.services, .features {
    padding: 40px 0;
    display: flex;
    justify-content: space-around;
}

.service, .feature {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 30%;
    text-align: center;
}

.service i, .feature i {
    font-size: 2em;
    color: #004080;
    margin-bottom: 10px;
}

footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 10px 0;
}


