/* Global Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #1c7fb2;
    color: white;
}

header {
    background-color: #000000;
    text-align: center;
    padding: 20px;
}

.menu {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.menu li a {
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    color: white;
    background-color: #344f54;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s;
}

.menu li a:hover {
    background-color: #7b51b9;
}

.top-banner {
    background-color: #7b51b9;
    text-align: center;
    padding: 10px;
}

.quote-btn {
    background-color: white;
    color: #000;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.quote-btn:hover {
    background-color: #344f54;
    color: white;
}

.intro {
    text-align: center;
    padding: 20px;
}

.header-img {
    width: 100%;
    max-width: 1800px;
    height: auto;
}

.services {
    text-align: center;
    margin: 20px auto;
    max-width: 400px;
    border: 1px solid #000;
    padding: 20px;
    background-color: #fff;
    color: #000;
}

h1, h2 {
    color: white;
}

footer {
    background-color: #000000;
    text-align: center;
    padding: 20px;
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
