﻿/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

/* Header styles */
.header {
    background: #333;
    color: #fff;
    padding: 20px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
}

    .nav-links li {
        margin-right: 20px;
    }

    .nav-links a {
        color: #fff;
        text-decoration: none;
    }

/* Hero section styles */
.hero {
    text-align: center;
    padding: 100px 0;
}

.hero-text {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #fff;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

    .btn:hover {
        background: #ddd;
    }

/* Feature section styles */
.features {
    padding: 100px 0;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.feature-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    text-align: center;
    margin-bottom: 30px;
}

    .feature-item img {
        max-width: 100%;
        height: auto;
        margin-bottom: 10px;
    }

/* Download section styles */
.download {
    text-align: center;
    padding: 100px 0;
}

.btn-download {
    background: #333;
    color: #fff;
}

    .btn-download:hover {
        background: #555;
    }

/* Contact section styles */
.contact {
    padding: 100px 0;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
    }

.btn-contact {
    background: #333;
    color: #fff;
    width: 200px;
}

    .btn-contact:hover {
        background: #555;
    }

/* Footer styles */
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
