<!-- styles.css -->

body {

font-family: Arial, sans-serif;

margin: 0;

padding: 0;

}


.navbar {

display: flex;

justify-content: space-between;

padding: 15px;

background: #0a2540;

color: white;

}


.navbar ul {

list-style: none;

display: flex;

gap: 15px;

}


.navbar a {

color: white;

text-decoration: none;

}


.hero {

text-align: center;

padding: 100px 20px;

background: linear-gradient(to right, #007bff, #00c6ff);

color: white;

}


.btn {

padding: 10px 20px;

background: #fff;

color: #007bff;

text-decoration: none;

border-radius: 5px;

}


section {

padding: 50px 20px;

}


.grid {

display: grid;

grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

gap: 20px;

}


form {

display: flex;

flex-direction: column;

gap: 10px;

}


input, textarea {

padding: 10px;

border: 1px solid #ccc;

}


button {

padding: 10px;

background: #007bff;

color: white;

border: none;

}


footer {

text-align: center;

padding: 20px;

background: #0a2540;

color: white;

}



