body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background: linear-gradient(#2C67F2, #62CFF4);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header .subtext {
    font-size: 1.5em;
    margin-top: 10px;
    font-weight: 300;
}

.hero {
    text-align: center;
    padding: 40px 20px;
}

.hero img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    max-height: 80vh;
}

.features {
    background: #f4f4f4;
    padding: 40px 20px;
}

.features h2 {
    text-align: center;
    margin-top: 0;
    font-size: 2.5em;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.feature-item h3 {
    margin-top: 0;
    font-size: 1.5em;
}

.download {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(#2C67F2, #62CFF4);
    color: #fff;
}

.download h2 {
    margin-top: 0;
    font-size: 2.5em;
}

.download p {
    font-size: 1.2em;
    margin: 10px 0;
}

.buttons {
    margin-top: 20px;
}

.button {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    font-size: 1em;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.buttons img {
    width: 240px;
    height: auto;
}

@media (min-width: 769px) {
    .buttons img {
        width: auto;
        height: 80px;
        object-fit: cover;
    }
}

.button:hover {
    background: #0056b3;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

footer h2 {
    margin-top: 0;
    font-size: 2em;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: #fff;
    text-decoration: underline;
}

.legal-links {
    margin-top: 20px;
}

.legal-link {
    color: #fff;
    text-decoration: underline;
    margin: 0 10px;
}

.legal-link:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .button {
        display: block;
        width: 80%;
        margin: 10px auto;
    }
}