*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#0a0a0a;
    color:white;
    line-height:1.6;
}

a{
    text-decoration:none;
    color:inherit;
}

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:24px 5%;
    background:rgba(0,0,0,0.95);
    border-bottom:1px solid rgba(255,255,255,0.08);
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    font-size:1.1rem;
    font-weight:bold;
    letter-spacing:4px;
}

.nav{
    display:flex;
    gap:28px;
}

.nav a{
    color:#d6d6d6;
    text-transform:uppercase;
    font-size:0.95rem;
    transition:0.3s;
}

.nav a:hover,
.nav a.active{
    color:#ffffff;
}

.hero{
    min-height:45vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:40px;
    background:
    linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.8)),
    url("img/bg.jpg") center/cover no-repeat;
}

.subtitle{
    text-transform:uppercase;
    letter-spacing:3px;
    color:#b9b9b9;
    margin-bottom:14px;
    font-size:0.9rem;
}

.hero h1{
    font-size:3.4rem;
    text-transform:uppercase;
}

.about-section{
    padding:100px 5%;
}

.about-grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:60px;
}

.mini-title{
    text-transform:uppercase;
    letter-spacing:3px;
    color:#bdbdbd;
    margin-bottom:14px;
    font-size:0.85rem;
}

.center{
    text-align:center;
}

.about-grid h2,
.map-container h2{
    font-size:2.7rem;
    line-height:1.2;
}

.about-grid p{
    color:#d0d0d0;
    font-size:1rem;
}

.boxes-section{
    padding:80px 5%;
    background:#111111;
}

.boxes{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}

.box{
    background:#151515;
    border:1px solid rgba(255,255,255,0.07);
    padding:32px;
    transition:0.3s;
}

.box:hover{
    transform:translateY(-5px);
    border-color:rgba(255,255,255,0.2);
}

.box h3{
    margin-bottom:14px;
    font-size:1.3rem;
}

.box p{
    color:#cccccc;
}

.map-section{
    padding:100px 5%;
}

.map-container{
    max-width:1200px;
    margin:0 auto;
    text-align:center;
}

.map-text{
    max-width:750px;
    margin:18px auto 35px;
    color:#d0d0d0;
}

.map-box{
    width:100%;
    border:1px solid rgba(255,255,255,0.08);
    overflow:hidden;
}

.map-box iframe{
    width:100%;
    height:450px;
    border:0;
    display:block;
}

@media(max-width:900px){
    .about-grid,
    .boxes{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:2.5rem;
    }

    .about-grid h2,
    .map-container h2{
        font-size:2.2rem;
    }
}

@media(max-width:768px){
    .header{
        flex-direction:column;
        gap:14px;
    }

    .nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:16px;
    }

    .map-box iframe{
        height:320px;
    }
}