/* ===== RESET ===== */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:"Segoe UI",sans-serif;
}

body{
background:#ffffff;
color:#111;
}

a{
text-decoration:none;
color:inherit;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* ===== NAVBAR ===== */
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:white;
border-bottom:1px solid #eee;
}

.logo{
font-size:22px;
font-weight:700;
color:#b91c1c;
}

.nav-links a{
margin-left:25px;
font-weight:600;
color:#555;
}

.nav-links a:hover{
color:#dc2626;
}

/* ===== BUTTON ===== */
.btn{
display:inline-block;
padding:14px 30px;
background:linear-gradient(135deg,#dc2626,#b91c1c);
border:none;
border-radius:30px;
color:white;
font-weight:600;
cursor:pointer;
transition:0.3s;
}

.btn:hover{
transform:translateY(-2px);
box-shadow:0 10px 25px rgba(220,38,38,0.3);
}