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

body{
background:white;
color:#222;
}

.header{
display:flex;
align-items:center;
justify-content:space-between;
padding:8px 14px;
background:white;
box-shadow:0 2px 6px rgba(0,0,0,0.1);
}

.header-left{
display:flex;
align-items:center;
gap:10px;
}

.header img{
width:36px;
border-radius:8px;
}

.brand{
display:flex;
flex-direction:column;
line-height:1.05;
}

.brand .top{
font-size:16px;
color:#1f63c7;
font-weight:bold;
}

.brand .bottom{
font-size:11px;
color:#555;
}

.menu-icon{
font-size:24px;
cursor:pointer;
}

.menu-panel{
position:fixed;
top:0;
right:-260px;
width:260px;
height:100%;
background:white;
box-shadow:-3px 0 8px rgba(0,0,0,0.2);
transition:0.25s;
padding:20px;
z-index:1000;
}

.menu-panel.open{
right:0;
}

.menu-close{
font-size:24px;
cursor:pointer;
margin-bottom:20px;
}

nav{
display:flex;
justify-content:center;
gap:22px;
padding:8px;
background:#f5f5f5;
font-size:14px;
}

nav a{
text-decoration:none;
font-weight:bold;
color:#1f63c7;
}

.hero{
background:linear-gradient(120deg,#3a8bfd,#0b5ed7);
color:white;
padding:70px 25px;
text-align:center;
}

.hero h2{
font-size:32px;
margin-bottom:10px;
}

section{
max-width:1000px;
margin:auto;
padding:50px 20px;
}

h3{
color:#1f63c7;
margin-bottom:20px;
}

.gallery{
display:flex;
overflow-x:auto;
gap:20px;
scroll-behavior:smooth;
}

.gallery img{
height:220px;
border-radius:10px;
transition:0.3s;
opacity:0.5;
flex-shrink:0;
transform:scale(0.9);
}

.gallery img.active{
opacity:1;
transform:scale(1.1);
}

form{
max-width:420px;
}

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

button{
margin-top:14px;
padding:12px;
background:#1f63c7;
color:white;
border:none;
border-radius:6px;
cursor:pointer;
}

.error-text{
color:red;
font-size:13px;
margin-top:6px;
}

.contact{
background:#f5f8ff;
padding:30px;
border-radius:10px;
line-height:1.8;
}

.contact-row{
margin-bottom:16px;
}

.contact-row a{
margin-left:10px;
background:#1f63c7;
color:white;
padding:6px 12px;
border-radius:5px;
text-decoration:none;
font-size:13px;
}

iframe{
margin-top:20px;
width:100%;
border-radius:10px;
}

footer{
background:#0b5ed7;
color:white;
text-align:center;
padding:16px;
margin-top:40px;
}

.call-float{
position:fixed;
bottom:20px;
right:20px;
background:white;
color:#0b5ed7;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
text-decoration:none;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
}