body{
    margin:0;
    font-family:Arial;
    background:#f4f4f4;
}

header{
    background:#002b5c;
    color:white;
    text-align:center;
    padding:20px;
}

.logo{
    width:120px;
}

nav{
    margin-top:15px;
}

nav a{
    color:white;
    text-decoration:none;
    margin:15px;
    font-size:18px;
}

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

.hero h2{
    color:#01386a;
    font-size:40px;
}

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

.service-card{
    height:300px;
    background-size:cover;
    background-position:center;
    margin:30px auto;
    max-width:900px;
    border-radius:15px;
    overflow:hidden;
    position:relative;
    box-shadow:0px 0px 10px gray;
}

.overlay{
    background:rgba(0,0,0,0.6);
    color:white;
    width:100%;
    height:100%;
    padding:40px;
    box-sizing:border-box;
}

.overlay h3{
    font-size:32px;
    margin-top:40px;
}

.overlay p{
    font-size:18px;
    line-height:1.6;
}

.about-section{
    background:white;
    margin:30px;
    padding:40px;
    border-radius:10px;
}

.about-section h2{
    color:#01386a;
}

.about-section ul li{
    padding:8px;
}

.team-box{
    padding:40px;
    text-align:center;
}

.team-grid{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}

.team-card{
    background:white;
    padding:30px;
    width:220px;
    border-radius:10px;
    box-shadow:0px 0px 10px gray;
}

.team-card h3{
    font-size:40px;
    color:#01386a;
}

.contact-section{
    background:white;
    margin:30px;
    padding:40px;
    border-radius:10px;
}

.contact-section h2{
    color:#01386a;
}

.contact-details{
    margin:30px 0;
}

form{
    max-width:500px;
}

input, textarea{
    width:100%;
    padding:12px;
    margin-top:15px;
    border:1px solid #ccc;
}

textarea{
    height:140px;
}

button{
    margin-top:20px;
    background:#01386a;
    color:white;
    padding:14px 30px;
    border:none;
    cursor:pointer;
    font-size:16px;
}

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:15px;
    margin-top:30px;
}
.service-benefits{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-top:30px;
}

.benefit-box{
    background:#f5f5f5;
    padding:25px;
    border-radius:10px;
    flex:1 1 300px;
    box-shadow:0px 0px 8px rgba(0,0,0,0.1);
}

.benefit-box h4{
    color:#01386a;
    margin-bottom:15px;
}
#result-message{
    margin-top:20px;
    font-weight:bold;
    font-size:18px;
}
.address-box{
    background:#f5f5f5;
    padding:20px;
    margin:20px 0;
    border-left:5px solid #01386a;
}

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

.gallery-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
}

.gallery-card{
    background:white;
    width:320px;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0px 0px 10px rgba(0,0,0,0.2);
}

.gallery-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.gallery-card h3{
    color:#01386a;
    padding:15px;
}

.gallery-card p{
    padding:0 15px 20px;
}
