/* Global styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Header style */
header {
    background-color: #003366; /* Dark blue */
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo container */
.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 100px; /* Increased logo size */
    height: auto;
    margin-right: 15px;
}

h1 {
    font-size: 30px;
    margin: 0;
}

/* Navigation menu */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

nav a:hover {
    text-decoration: underline;
}

/* Section styles */
.intro, .features, .testimonials, .download, .contact {
    padding: 20px;
    text-align: center;
    margin: 0 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* About section */
.intro h2, .features h2, .testimonials h2, .download h2, .contact h2 {
    color: #003366;
}

/* Features section */
.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    font-size: 16px;
    margin: 10px 0;
    color: #333;
}

/* Download button */
.download button {
    background-color: #003366;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
}

.download button:hover {
    background-color: #005bb5;
}

/* Contact section */
.contact a {
    color: #003366;
    text-decoration: none;
}

/* Footer styles */
footer {
    background-color: #003366;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}
