
body {
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #f9f9f9;
    color: #1c1c1c;
}

header {
    background-color: #ffffff;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

header img {
    height: 50px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #1c1c1c;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(145deg, #ff4081, #3f51b5);
    color: white;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 600px;
    margin: auto;
}

section {
    padding: 80px 40px;
    max-width: 1000px;
    margin: auto;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 40px;
    background-color: #1c1c1c;
    color: white;
}
