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

body{
font-family:Arial,sans-serif;
background:#f4f7fa;
color:#222;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:0 50px;
height:150px;
background:#003c6c;
color:white;
}

.menu{
display:flex;
list-style:none;
gap:20px;
}

.menu a{
color:white;
text-decoration:none;
}

.hero{
background:linear-gradient(
135deg,
#003c6c,
#00b4d8
);
color:white;
padding:90px 20px;
text-align:center;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
}

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

.btn{
background:white;
color:#003c6c;
padding:15px 30px;
text-decoration:none;
border-radius:8px;
font-weight:bold;
}

.services-preview,
.about-preview,
.contact-preview{
padding:80px 20px;
max-width:1200px;
margin:auto;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:30px;
}

.card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

footer{
background:#003c6c;
color:white;
text-align:center;
padding:25px;
margin-top:50px;
}

.logo img {
    height:220px;
    width: auto;
    display: block;
}

.why,
.zones {
    padding: 70px 20px;
    max-width: 1200px;
    margin: auto;
}

.why h2,
.zones h2 {
    margin-bottom: 30px;
    font-size: 28px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.why-item {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.why-item h3 {
    color: #003c6c;
    margin-bottom: 10px;
}

.zones p {
    margin-bottom: 25px;
}

.zones-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.zones-list span {
    background: white;
    color: #003c6c;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

footer{
    background:#003c6c;
    color:white;
    padding:50px 20px;
}

.footer-content{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

.footer-content h3{
    margin-bottom:15px;
}

.footer-content p{
    margin-bottom:8px;
}

.footer-bottom{
    text-align:center;
    margin-top:30px;
    opacity:0.8;
}

.seo-local{
max-width:1200px;
margin:80px auto;
padding:0 20px;
}

.seo-local h2{
font-size:42px;
margin-bottom:25px;
color:#003c6c;
}

.seo-local p{
font-size:18px;
line-height:1.8;
margin-bottom:20px;
}

.page-hero{
    background:linear-gradient(135deg,#003c6c,#00b4d8);
    color:white;
    padding:90px 20px;
    text-align:center;
}

.page-hero h1{
    font-size:48px;
    margin-bottom:20px;
}

.page-hero p{
    font-size:20px;
    max-width:800px;
    margin:auto;
}

.service-detail{
    max-width:1200px;
    margin:80px auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.service-block{
    background:white;
    padding:35px;
    border-radius:14px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.service-block h2{
    color:#003c6c;
    margin-bottom:15px;
}

.service-block p{
    line-height:1.6;
    margin-bottom:20px;
}

.service-block ul{
    padding-left:20px;
}

.service-block li{
    margin-bottom:10px;
}

.cta-section{
    max-width:1000px;
    margin:80px auto;
    padding:60px 20px;
    text-align:center;
    background:#003c6c;
    color:white;
    border-radius:18px;
}

.cta-section h2{
    font-size:36px;
    margin-bottom:15px;
}

.cta-section p{
    margin-bottom:30px;
}

.about-page{
    max-width:1100px;
    margin:80px auto;
    padding:0 20px;
}

.about-block{
    background:white;
    padding:40px;
    border-radius:14px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    margin-bottom:30px;
}

.about-block h2{
    color:#003c6c;
    margin-bottom:20px;
    font-size:30px;
}

.about-block p{
    line-height:1.8;
    margin-bottom:15px;
    font-size:17px;
}

.value-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-top:25px;
}

.value-card{
    background:#f4f7fa;
    padding:25px;
    border-radius:12px;
}

.value-card h3{
    color:#003c6c;
    margin-bottom:10px;
}

.contact-page{
    max-width:1200px;
    margin:80px auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.contact-card{
    background:white;
    padding:40px;
    border-radius:14px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.contact-card h2{
    color:#003c6c;
    margin-bottom:25px;
    font-size:30px;
}

.contact-card p{
    line-height:1.7;
    margin-bottom:15px;
}

.contact-form{
    display:flex;
    flex-direction:column;
}

.contact-form label{
    margin-bottom:8px;
    font-weight:bold;
    color:#003c6c;
}

.contact-form input,
.contact-form textarea{
    margin-bottom:18px;
    padding:14px;
    border:1px solid #d5dde5;
    border-radius:8px;
    font-size:16px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#00b4d8;
}

.form-btn{
    background:#003c6c;
    color:white;
    border:none;
    padding:15px 25px;
    border-radius:8px;
    font-weight:bold;
    cursor:pointer;
    font-size:16px;
}

.contact-info{
    max-width:1000px;
    margin:80px auto;
    padding:50px 20px;
    text-align:center;
    background:white;
    border-radius:14px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.contact-info h2{
    color:#003c6c;
    margin-bottom:20px;
}

.quote-page{
    max-width:1100px;
    margin:80px auto;
    padding:0 20px;
}

.quote-intro{
    background:white;
    padding:40px;
    border-radius:14px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    margin-bottom:30px;
}

.quote-intro h2{
    color:#003c6c;
    margin-bottom:20px;
    font-size:30px;
}

.quote-intro p{
    line-height:1.7;
    margin-bottom:15px;
}

.quote-form{
    background:white;
    padding:40px;
    border-radius:14px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    display:flex;
    flex-direction:column;
}

.form-row{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
}

.quote-form label{
    margin-bottom:8px;
    margin-top:15px;
    font-weight:bold;
    color:#003c6c;
}

.quote-form input,
.quote-form select,
.quote-form textarea{
    width:100%;
    margin-bottom:15px;
    padding:14px;
    border:1px solid #d5dde5;
    border-radius:8px;
    font-size:16px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{
    outline:none;
    border-color:#00b4d8;
}
