body {
    background-color: #f5f5f5;
    color: #123353;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: black;
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subheader {
    background-color: #123353;
    overflow: hidden;
}

.subheader a {
    float: left;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
}

.subheader a:hover {
    background-color: #ddd;
    color: #123353;
    transition: background-color 0.3s ease;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 17px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border: 1px solid #ddd;
}

.dropdown-content a {
    float: none;
    color: #123353;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    background-color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #123353;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

#iframe-container {
    margin: 20px auto;
    max-width: 1200px;
}

h2 {
    color: #123353;
    border-bottom: 2px solid #123353;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.intro, .services, .contact-testimonials {
    margin-bottom: 40px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.intro .grid {
    align-items: center;
}

.intro .text {
    order: 1;
}

.intro .image {
    order: 2;
}

.intro img {
    width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlighted-text {
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.service-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-card {
    background-color: white;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33% - 20px);
    box-sizing: border-box;
    text-align: center;
}

.service-card h3 {
    margin-top: 0;
}

.testimonial, .contact-info {
    background-color: white;
    padding: 20px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial {
    font-style: italic;
    position: relative;
}

.testimonial p:last-child {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.contact-info img {
    width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.map-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

iframe {
    border: none;
    width: 100%;
    height: calc(100vh - 80px); /* 100vh minus the height of the header and subheader */
}
