*{
box-sizing:border-box;
margin:0;
padding:0;
}

body{
font-family:Arial, sans-serif;
background:#f4f4f4;
line-height:1.6;
}

header{
background:#0d1b2a;
color:white;
}

.container{
max-width:1200px;
width:90%;
margin:auto;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
flex-wrap:wrap;
}

nav ul{
display:flex;
list-style:none;
gap:20px;
}

nav ul li a{
color:white;
text-decoration:none;
}

.hero{
height:450px;
background:url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f") center/cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero h1{
font-size:42px;
}

section{
padding:60px 0;
}

.about{
background:white;
}

.services{
background:#e9ecef;
}

h2{
text-align:center;
margin-bottom:40px;
}

.grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.card{
background:white;
padding:25px;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
text-align:center;
border-radius:6px;
}

.card i{
font-size:35px;
color:#c89b3c;
margin-bottom:15px;
}

.practice img{
width:100%;
height:200px;
object-fit:cover;
border-radius:6px;
}

.contact{
background:#0d1b2a;
color:white;
text-align:center;
}

address{
font-style:normal;
line-height:1.8;
}

address a{
color:#ffc107;
}

footer{
background:black;
color:white;
text-align:center;
padding:15px;
}

/* responsive */

@media(max-width:900px){

.grid{
grid-template-columns:repeat(2,1fr);
}

.hero h1{
font-size:32px;
}

}

@media(max-width:600px){

nav{
flex-direction:column;
}

nav ul{
flex-direction:column;
align-items:center;
}

.grid{
grid-template-columns:1fr;
}

.hero{
height:350px;
}

.hero h1{
font-size:26px;
}

}