* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f6f9;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: #0d1b2a;
}

.logo {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
}

.btn-nav {
    background: #ff7b00;
    padding: 8px 15px;
    border-radius: 5px;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(to right, #0a1f44, #0d47a1);
    color: white;
}

.btn-primary {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #ff7b00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.features {
    display: flex;
    justify-content: space-around;
    padding: 50px 8%;
    flex-wrap: wrap;
}

.feature-box {
    background: white;
    padding: 25px;
    width: 300px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

    .feature-box:hover{
        transform: translateY(-5px);
        background: #0a1f44, #0d47a1;
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    }

.about, .form-section {
    padding: 60px 8%;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
}

form input, form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.about {
    color: white;
}

footer {
    text-align: center;
    padding: 20px;
    background: #0d1b2a;
    color: white;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    header {
        flex-direction: column;
    }

    nav {
        margin-top: 10px;
    }
}