*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    background:#ffffff;
    color:#111827;
}

body{
font-family:Arial,sans-serif;
background:#fff;
color:#111827;
}

.container{
max-width:1280px;
margin:auto;
padding:0 20px;
}

.site-header{

background:#fff;
border-bottom:1px solid #eee;

}

.site-header .container{

display:flex;

justify-content:space-between;

align-items:center;

height:80px;

}

.logo{

font-size:32px;

font-weight:bold;

}

.main-menu ul{

display:flex;

gap:35px;

list-style:none;

}

.main-menu a{

text-decoration:none;

color:#111827;

font-weight:600;

}

.header-button a{

background:#C8A14B;

color:#fff;

padding:14px 24px;

border-radius:8px;

text-decoration:none;

}

/* ===== Header ===== */

.site-header{
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.logo img{
    max-height: 55px;
    width: auto;
}

.main-menu ul{
    display:flex;
    align-items:center;
    gap:32px;
    list-style:none;
    margin:0;
    padding:0;
}

.main-menu a{
    color:#111827;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.main-menu a:hover{
    color:#C8A14B;
}

.header-button a{
    display:inline-block;
    background:#C8A14B;
    color:#fff;
    padding:12px 22px;
    border-radius:8px;
    transition:.3s;
}

.header-button a:hover{
    background:#b88d34;
}



/* ===========================
Hero Section
=========================== */

.hero{

padding:120px 0;

background:#f8f9fb;

}

.hero-content{

max-width:700px;

}

.hero h1{

font-size:58px;

line-height:1.1;

margin-bottom:20px;

color:#111827;

}

.hero p{

font-size:22px;

line-height:1.7;

color:#666;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:20px;

}

.btn-primary{

background:#C8A14B;

padding:16px 34px;

border-radius:10px;

text-decoration:none;

color:#fff;

font-weight:700;

}

.btn-secondary{

border:2px solid #111827;

padding:16px 34px;

border-radius:10px;

text-decoration:none;

color:#111827;

font-weight:700;

}


.hero{
    padding:120px 0;
    background:linear-gradient(135deg,#ffffff,#f8f9fb);
}

.hero-content{
    max-width:700px;
}

.hero-badge{
    display:inline-block;
    background:#111827;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    margin-bottom:20px;
    font-size:14px;
}

.hero h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:20px;
    color:#111827;
}

.hero p{
    font-size:22px;
    color:#6b7280;
    line-height:1.8;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:18px;
}

.btn-primary,
.btn-secondary{
    padding:16px 30px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-primary{
    background:#C8A14B;
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    border:2px solid #111827;
    color:#111827;
}

.btn-secondary:hover{
    background:#111827;
    color:#fff;
}