
/* ==========================
   BODY
========================== */

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

    background: linear-gradient(to bottom, #ffffff, #dceeff);
}

}


/* ==========================
   HEADER
========================== */

header {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                      url("header.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    height: 250px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;
}

header h1 {
    margin: 0;
    font-size: 48px;
    color: white;
    text-shadow: 2px 2px 5px black;
}

header p {
    margin-top: 10px;
    font-size: 20px;
    color: white;
    text-shadow: 2px 2px 5px black;
}
}

header p {
    margin-top: 5px;
}


h1, h2 {
    font-family: Verdana, sans-serif;
    color: #003366;
}

header h1 {
    color: white;
}


nav {
    background-color: #004c99;
}
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 12px;
    text-align: center;
}

nav li {
    display: inline;
    margin: 0 20px;
}



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

a:hover {
    color: #ffd700;
}


#hero {
    text-align: center;
    margin: 30px;
    padding: 20px;
}


#info {
    overflow: auto;
    margin: 30px;
    padding: 20px;
}

.card {
    float: left;
    width: 45%;
    margin: 2%;
    padding: 20px;
    background-color: white;
    border: 1px solid #cccccc;
    border-radius: 8px;
    box-sizing: border-box;
}


#contact-preview {
    text-align: center;
    margin: 30px;
    padding: 20px;
    background-color: #e8f0fe;
}


.button {
    display: inline-block;
    background-color: #00509e;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    margin-top: 15px;
}

.button:hover {
    background-color: #003366;
    color: white;
}


img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: auto;
}


footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}

/* Tablet */
@media screen and (max-width: 768px) {

    nav li {
        display: block;
        margin: 10px 0;
    }

    .card {
        width: 90%;
        float: none;
        margin: 20px auto;
    }

    .hero-text h2 {
        font-size: 30px;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {

    header h1 {
        font-size: 28px;
    }

    .hero-text h2 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .button {
        display: block;
        width: 80%;
        margin: 20px auto;
    }
}
.service-box {
    background: white;
    border-left: 6px solid #2D1B69;
    margin: 20px auto;
    padding: 20px;
    width: 85%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}