body{
    margin:0;
    background:#000000;
    color:#F7F3EC;
    font-family:Montserrat,sans-serif;
    line-height:1.7;
}

header{
    background:#000000;
    border:1px solid #D4AF6A;
    margin:15px;
    padding:10px;
    text-align:center;
}

.header-logo{
    width:35%;
    max-width:450px;
    height:auto;
}

nav{
    background:#F8F6F2;
    text-align:center;
    padding:12px;
    border-top:1px solid #D4AF6A;
    border-bottom:1px solid #D4AF6A;
}

nav a{
    color:#C9A25B;
    text-decoration:none;
    margin:0 25px;
    font-weight:700;
    font-size:18px;
    text-transform:uppercase;
}

nav a:hover{
    color:#D4AF6A;
}

.hero{
    text-align:center;
    padding:40px 20px;
}

.hero h1{
    color:#D4AF6A;
    font-family:"Cormorant Garamond",serif;
    font-size:42px;
    font-weight:500;
}

.tagline{
    color:#D4AF6A;
    font-family:"Cormorant Garamond",serif;
    font-size:20px;
}

.hero p{
    max-width:700px;
    margin:auto;
}

.button{
    display:inline-block;
    margin:10px;
    padding:12px 24px;
    border:1px solid #D4AF6A;
    color:#D4AF6A;
    text-decoration:none;
    border-radius:4px;
    transition:0.3s;
}

.button:hover{
    background:#D4AF6A;
    color:#111111;
}

.whatsapp{
    background:#25D366;
    color:white;
    border:1px solid #25D366;
}

section{
    max-width:1200px;
    margin:auto;
    padding:50px 20px;
}

h2{
    color:#D4AF6A;
    font-family:"Cormorant Garamond",serif;
    font-size:36px;
    margin-bottom:15px;
}

.section-subtitle{
    color:#D4AF6A;
    font-size:16px;
    margin-bottom:25px;
}

.about-container{
    display:flex;
    gap:50px;
    align-items:center;
}

.about-photo img{
    width:350px;
    border:1px solid #D4AF6A;
    border-radius:8px;
}

.about-text{
    flex:1;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.service-card{
    border:1px solid #D4AF6A;
    padding:18px;
    min-height:90px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    transition:0.3s;
}

.service-card:hover{
    background:#111111;
}

.service-card h3{
    color:#D4AF6A;
    margin:0;
    font-size:18px;
}

.news-item{
    border-left:3px solid #D4AF6A;
    padding-left:20px;
}

.news-item h3{
    color:#D4AF6A;
}

.news-date{
    color:#C9A25B;
    font-weight:600;
}

a{
    color:#D4AF6A;
}

.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:white;
    padding:12px 18px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    box-shadow:0 4px 12px rgba(0,0,0,.35);
}

footer{
    text-align:center;
    padding:30px;
    border-top:1px solid #D4AF6A;
}

@media(max-width:768px){

    .about-container{
        flex-direction:column;
    }

    .about-photo img{
        width:100%;
        max-width:350px;
    }

    .header-logo{
        width:75%;
    }

    nav a{
        display:block;
        margin:10px 0;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:32px;
    }
}