
body{
margin:0;
font-family:Arial,sans-serif;
background:#fff;
color:#333;
line-height:1.6;
}
.container{
width:90%;
max-width:1200px;
margin:auto;
}
header{
background:#fff;
border-bottom:1px solid #ddd;
padding:15px 0;
}
.brand{
display:flex;
align-items:center;
gap:20px;
}
.brand img{
width:85px;
height:85px;
object-fit:contain;
border-radius:14px;
background:#fff;
padding:5px;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}
.hero{
background:#f3f3f3;
padding:80px 0;
}
.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}
.hero h2{
font-size:48px;
}
.hero-images{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}
.hero-images img{
width:100%;
height:320px;
object-fit:cover;
border-radius:20px;
}
.section{
padding:70px 0;
}
.gray{
background:#f8f8f8;
}
.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:30px;
}
.card{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
font-weight:bold;
}
.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
margin-top:30px;
}
.gallery img{
width:100%;
height:280px;
object-fit:cover;
border-radius:20px;
}
.contact-section{
background:#111;
color:#fff;
padding:70px 0;
}
.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:30px;
}
.contact-box{
background:#222;
padding:25px;
border-radius:20px;
}
footer{
background:#000;
color:#bbb;
text-align:center;
padding:25px;
}
@media(max-width:768px){
.hero-grid{
grid-template-columns:1fr;
}
.hero h2{
font-size:36px;
}
}
