* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #2c3e50;
    color: white;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #3498db;
    color: white;
    height: 400px;
}

.hero-content {
    max-width: 50%;
}

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2ecc71;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.hero-image img {
    max-width: 400px;
    height: auto;
    border-radius:5%;
}

.features {
    padding: 50px;
    text-align: center;
}

.features h2 {
    margin-bottom: 20px;
}

.feature-list {
    display: flex;
    justify-content: space-around;
}

.feature-item {
    max-width: 300px;
}

.feature-item img {
    max-width: 100px;
    margin-bottom: 10px;
}

.download {
    padding: 50px;
    text-align: center;
    background-color: #ecf0f1;
}

.download-buttons a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.app-store {
    background-color: #000;
}

.google-play {
    background-color: #34a853;
}

.contact {
    padding: 50px;
    text-align: center;
    background-color: #2c3e50;
    color: white;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #34495e;
    color: white;
}
