*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Tahoma,sans-serif;
}

body{
background:#0d0d0d;
color:#ffffff;
line-height:1.8;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#111;
padding:20px 0;
border-bottom:1px solid #c9a24e;
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
}

h1{
color:#c9a24e;
font-size:28px;
}

nav a{
color:#fff;
text-decoration:none;
margin-right:20px;
}

.hero{
padding:120px 0;
text-align:center;
}

.hero h2{
font-size:48px;
color:#c9a24e;
margin-bottom:20px;
}

.hero p{
max-width:700px;
margin:auto;
margin-bottom:30px;
}

.btn{
background:#c9a24e;
color:#000;
padding:15px 30px;
text-decoration:none;
border-radius:8px;
font-weight:bold;
display:inline-block;
}

.section{
padding:80px 0;
}

.section h2{
text-align:center;
margin-bottom:40px;
color:#c9a24e;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
background:#1b1b1b;
padding:25px;
border-radius:12px;
border:1px solid #333;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery-box{
background:#1b1b1b;
height:220px;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
border:1px solid #333;
}

footer{
padding:30px;
text-align:center;
border-top:1px solid #333;
}social{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:15px;
margin-top:20px;
text-align:center;
}
.gallery img{
    width: 100%;
    height: 220px;
    object-fit: contain;background: #fff;
    border-radius: 12px;
    display: block;
}