/* css/style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}
header {
    background: url('../images/header_background.jpeg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
header h1 {
    font-size: 3rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem 2rem;
    border-radius: 10px;
}
nav {
    background: #288bcc;
    color: white;
    padding: 1rem 2rem;
    text-align: center;
}
nav a {
    color: white;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: bold;
}
section.features {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
}
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-around;
}
.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    flex: 1 1 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-5px);
}
.feature-item h3 {
    margin-bottom: 1rem;
    color: #007bff;
}
.download-section {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}
.download-section h2 {
    margin-bottom: 1rem;
}
.download-section a {
    background: white;
    color: #007bff;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}
footer {
    background: #1e1e1e;
    color: #ccc;
    text-align: center;
    padding: 1rem;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    header {
        height: 200px;
    }
}