* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #020b45;
    color: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #010733;
}

.logo-section img {
    width: 180px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 18px;
}

.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 55px;
    margin-bottom: 20px;
    color: #ffcc00;
}

.hero-content p {
    font-size: 22px;
    line-height: 35px;
    max-width: 800px;
    margin: auto;
}

.hero-content button {
    margin-top: 30px;
    padding: 15px 40px;
    border: none;
    background: #ffcc00;
    color: #000;
    font-size: 20px;
    border-radius: 10px;
    cursor: pointer;
}

.about {
    padding: 80px 50px;
    text-align: center;
}

.about h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ffcc00;
}

.about p {
    font-size: 22px;
    line-height: 35px;
}

.services {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px;
    flex-wrap: wrap;
}

.card {
    background: #08146d;
    padding: 30px;
    width: 300px;
    border-radius: 15px;
    text-align: center;
}

.card h3 {
    color: #ffcc00;
    margin-bottom: 15px;
}

.contact {
    padding: 80px 50px;
    text-align: center;
}

.contact h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #ffcc00;
}

form {
    max-width: 600px;
    margin: auto;
}

form input,
form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
}

form button {
    padding: 15px 40px;
    border: none;
    background: #ffcc00;
    color: #000;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
}

footer {
    background: #010733;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

@media(max-width:768px) {
    header {
        flex-direction: column;
    }
    nav {
        margin-top: 20px;
    }
    .hero-content h1 {
        font-size: 35px;
    }
    .hero-content p {
        font-size: 18px;
        line-height: 30px;
    }
}