* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}

body {
background: #0b0e14;
color: #f5f6fa;
}

.container {
width: 90%;
max-width: 1200px;
margin: auto;
}

.header {
background: #0b0e14;
border-bottom: 2px solid #e6a23c;
}

.nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 0;
}

.logo {
height: 200px;
}

nav a {
margin-left: 20px;
color: #f5f6fa;
text-decoration: none;
font-weight: bold;
}

.hero {
position: relative;
height: 80vh;
background-size: cover;
background-position: center;
}

.hero-overlay {
position: absolute;
inset: 0;
background: rgba(0,0,0,0.65);
}

.hero-content {
position: relative;
top: 50%;
transform: translateY(-50%);
}

.hero h1 {
font-size: 3.5rem;
font-weight: 900;
}

.hero p {
margin: 15px 0 30px;
font-size: 1.2rem;
}

.btn-primary {
background: #e6a23c;
color: #000;
padding: 15px 25px;
text-decoration: none;
font-weight: bold;
margin-right: 10px;
}

.btn-secondary {
border: 2px solid #e6a23c;
padding: 13px 23px;
color: #e6a23c;
text-decoration: none;
font-weight: bold;
}

.categories {
padding: 80px 0;
}

.category-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
gap: 20px;
margin-top: 40px;
}

.category-grid a {
background: #141824;
padding: 40px;
text-align: center;
font-weight: bold;
text-decoration: none;
color: #f5f6fa;
border: 1px solid #e6a23c;
}

.value {
background: #141824;
padding: 80px 0;
}

.value ul {
list-style: none;
margin-top: 30px;
}

.value li {
margin-bottom: 15px;
font-size: 1.1rem;
}

.cta {
padding: 80px 0;
text-align: center;
}

.footer {
background: #000;
padding: 20px 0;
text-align: center;
font-size: 0.9rem;
}