* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background: #002586;
    color: #fff;
    padding-bottom: 60px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

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

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.btn {
    background: #e67e22;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
}

.section {
    padding: 60px 40px;
    text-align: center;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.service {
    background: #fff;
    padding-bottom: 20px;
    border-radius: 8px;
    width: 250px;
    height: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.testimonials blockquote {
    font-style: italic;
    margin: 20px auto;
    max-width: 600px;
}

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

footer {
    background: #002586;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.location-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}

.location-text {
    flex: 1 1 300px;
    max-width: 400px;
}

.address-box {
    background-color: #f3f3f3;
    padding: 15px;
    border-left: 4px solid #e67e22;
    margin-top: 15px;
    font-size: 0.95em;
    line-height: 1.5;
    border-radius: 4px;
}

.map-container {
    flex: 1 1 400px;
    height: 300px;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}