body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
}

main{
    text-align: center;
}

header {
    background: black;
    padding: 20px 0;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo img {
    max-height: 200px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 20px 0 0; 
    padding: 0;
}

nav ul li {
    margin: 0 15px; 
}

nav ul li a {
    color: #f4f4f9;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

.hero {
    padding-bottom: 20px;
}

.feature-image {
    max-width: 100%;
    height: auto;
}

h1 {
    font-size: 28px;
    margin-top: 50px;
}

p {
    font-size: 18px;
    max-width: 600px;
    margin: 10px auto;
}

.buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #5047ff, #6c63ff);
    color: #f4f4f9;
    padding: 12px 20px;
    margin: 10px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: linear-gradient(135deg, #5047ff, #3a32cc);
}

.btn.secondary {
    background: linear-gradient(135deg, #f4f4f9, #ddd);
    color: #333;
}

footer {
    background: #6c63ff;
    padding: 15px;
    margin-top: 40px;
    text-align: center;
}