/* styles.css */

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
}

.header {
    background-color: #2ecc71;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.header .nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
}

.header .nav a:hover {
    text-decoration: underline;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px;
    background-color: #f4f4f4;
}

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

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

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

.hero-content .btn {
    background-color: #2ecc71;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
}

.hero-images {
    flex: 1;
    display: flex;
    gap: 10px;
}

.hero-images img {
    max-width: 100%;
    border-radius: 10px;
}

.about, .services, .download {
    text-align: center;
    padding: 40px 20px;
}

.services .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.services .service-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.services .service-card img {
    max-width: 100%;
    border-radius: 10px;
}

.download img {
    max-width: 300px;
    margin: 20px auto;
    display: block;
}

.footer {
    background-color: #2ecc71;
    color: white;
    text-align: center;
    padding: 10px 0;
}
