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

body{
    background:#08101d;
    color:#f2e6c9;
    line-height:1.6;
}

.hero{
    min-height:100vh;
    padding:20px;
    background:linear-gradient(rgba(5,10,20,0.95), rgba(5,10,20,0.95));
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
    flex-wrap:wrap;
}

nav ul{
    display:flex;
    gap:20px;
    list-style:none;
    flex-wrap:wrap;
}

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

.brand{
    color:#d8b36a;
    font-size:1.2rem;
    font-weight:bold;
}

.hero-content{
    max-width:900px;
    margin:auto;
    text-align:center;
    padding-top:50px;
}

.logo{
    width:320px;
    max-width:90%;
    border-radius:20px;
    box-shadow:0 0 25px rgba(216,179,106,0.4);
}

h1{
    font-size:3rem;
    margin-top:30px;
    color:#d8b36a;
}

.hero p{
    margin-top:20px;
    font-size:1.2rem;
}

.btn{
    display:inline-block;
    margin-top:30px;
    background:#b88a3d;
    color:#08101d;
    text-decoration:none;
    padding:15px 30px;
    border-radius:50px;
    font-weight:bold;
}

section{
    padding:80px 40px;
    text-align:center;
}

h2{
    color:#d8b36a;
    margin-bottom:40px;
    font-size:2.4rem;
}

.grid,.review-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:25px;
}

.card,.review-card{
    background:#111c2d;
    border:1px solid #b88a3d;
    padding:30px;
    border-radius:20px;
    box-shadow:0 0 15px rgba(0,0,0,0.4);
}

.review-card h3{
    margin-bottom:15px;
    color:#d8b36a;
}

.mission p,.contact p{
    max-width:850px;
    margin:auto;
    font-size:1.1rem;
}

.appointment-form{
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea{
    padding:15px;
    border:none;
    border-radius:12px;
    background:#111c2d;
    color:white;
    border:1px solid #b88a3d;
}

.appointment-form textarea{
    min-height:120px;
}

.appointment-form button{
    padding:15px;
    border:none;
    border-radius:50px;
    background:#b88a3d;
    color:#08101d;
    font-weight:bold;
    cursor:pointer;
    font-size:1rem;
}

footer{
    background:#050b14;
    padding:20px;
    text-align:center;
    color:#888;
}

@media(max-width:768px){
    h1{
        font-size:2.2rem;
    }

    nav{
        justify-content:center;
        gap:20px;
    }
}
