* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(120deg, #1d2671, #c33764);
    color: white;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    background: rgba(0,0,0,0.2);
}

.logo {
    font-size: 26px;
    font-weight: bold;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
}

.navbar a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Buttons */
.hero-buttons {
    margin-top: 30px;
}

.btn {
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    margin: 10px;
    font-weight: bold;
}

.primary {
    background: #ffd369;
    color: #1d2671;
}

.secondary {
    background: white;
    color: #1d2671;
}

.btn:hover {
    opacity: 0.9;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
}

.card {
    background: white;
    color: #333;
    width: 260px;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.card h3 {
    margin-bottom: 10px;
    color: #1d2671;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.25);
    font-size: 14px;
}
