/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f8ff; /* Light pastel blue */
    color: #333;
    line-height: 1.6;
}

/* Header styles */
header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

header nav ul {
    list-style-type: none;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

header nav ul li a:hover {
    color: #66ccff; /* Light pastel blue color on hover */
}

/* Hero section */
#hero {
    background-color: #66ccff; /* Light pastel blue */
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

#hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

#hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.download-btn {
    background-color: #333;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
}

.download-btn:hover {
    background-color: #66ccff; /* Light pastel blue background on hover */
}

/* Features section */
#features {
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
    background-color: #f9f9f9; /* Light gray */
}

.card {
    background-color: #fff;
    border: 1px solid #ccc;
    width: 30%;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.card h2 {
    color: #66ccff; /* Light pastel blue */
    margin-bottom: 15px;
}

.card p {
    font-size: 16px;
}

/* About section */
#about {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

#about h2 {
    color: #333;
    margin-bottom: 20px;
}

#about p {
    font-size: 18px;
    width: 70%;
    margin: 0 auto;
}

/* Download section */
#download {
    padding: 50px 0;
    text-align: center;
    background-color: #66ccff; /* Light pastel blue */
}

#download h2 {
    color: #fff;
    margin-bottom: 20px;
}

footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}
