
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family: Georgia, serif;
    background:#faf8f4;
    color:#1a1a1a;
}
header{
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    background:rgba(7,16,28,.95);
    padding:20px 60px;
    border-bottom:1px solid rgba(255,255,255,.1);
}
nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.logo{
    color:#d4af37;
    font-size:28px;
    font-weight:bold;
}
nav ul{
    display:flex;
    gap:30px;
    list-style:none;
}
nav a{
    color:white;
    text-decoration:none;
    font-size:16px;
}
.hero{
    height:100vh;

    background-image:
        linear-gradient(rgba(29,42,56,.18), rgba(29,42,56,.20)),
        url("../images/hero-v2.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;

    padding:0 80px;

    color:white;
}
.hero-content{
    max-width:720px;
}
.hero h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:25px;
}
.hero p{
    font-size:22px;
    margin-bottom:35px;
    color:#ddd;
}
.btn{
    display:inline-block;
    background:#d4af37;
    color:#111;
    padding:16px 34px;
    text-decoration:none;
    border-radius:4px;
    font-weight:bold;
}
.section{
    padding:110px 40px;
}
.section-title{
    font-size:44px;
    margin-bottom:25px;
}
.practice-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:10px;
    margin-top:40px;
}
.card{
    background:white;
    padding:40px 30px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:box-shadow .3s ease;
}

.card:hover{
    box-shadow:0 14px 40px rgba(0,0,0,.12);
}

.dark{
    background:#07101c;
    color:white;
}
.testimonial{
    background:#fff;
    padding:30px;
    border-left:5px solid #d4af37;
    margin-bottom:20px;
    color:#111;
}
.cta {
    text-align: center;
    background: #d4af37;
    color: #111;
}

.cta h2 {
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta a.btn {
    display: inline-block;
    background: #ffffff;
    color: #07101c;
    padding: 16px 34px;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 10px;
    text-decoration: none;
}

.cta a.btn:hover {
    background: #f2f2f2;
    color: #07101c;
}
.cta a.btn {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 25px;
}
footer{
    background:#07101c;
    color:white;
    padding:60px 80px;
}
.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-grid h3{
    margin-bottom:20px;
}

.footer-grid p{
    margin-top:15px;
}

.footer-grid a,
.footer-grid a:visited,
.footer-grid a:active {
    color: #d4af37 !important;
    text-decoration: none;
}

.footer-grid a:hover {
    color: #d4af37 !important;
    text-decoration: underline;
}
.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ccc;
}
.payment-box{
    background:white;
    padding:50px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}
@media(max-width:768px){
    header{
        padding:20px;
    }
    nav{
        flex-direction:column;
        gap:15px;
    }
    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }
    .hero{
    height:133.333vw;

    background-image:
        linear-gradient(rgba(29,42,56,.18), rgba(29,42,56,.20)),
        url("../images/hero-mobile.jpg");

    background-size:100% auto;
    background-position:center top;
    background-repeat:no-repeat;

    padding:0 20px;
}
    .hero h1{
        font-size:44px;
    }
    .section{
        padding:80px 20px;
    }
}
@media(max-width:768px){
    .practice-grid{
        grid-template-columns:1fr;
    }
}