body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
header {
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    height: 50px;
}
nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
}
.hero {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    text-align: center;
    padding: 100px 0;
}
.cta-button {
    background-color: #ff5722;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}
.features {
    padding: 60px 0;
    text-align: center;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.feature-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.download {
    padding: 60px 0;
    background-color: #f5f5f5;
    text-align: center;
}
.download-buttons img {
    height: 50px;
    margin: 10px;
}
.newsletter {
    background: linear-gradient(135deg, #a777e3, #6e8efb);
    color: white;
    padding: 60px 0;
    text-align: center;
}
.mailchimp-form {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.mailchimp-form input {
    padding: 12px;
    border: none;
    border-radius: 50px 0 0 50px;
    width: 250px;
}
.mailchimp-form button {
    padding: 12px 20px;
    border: none;
    background-color: #ff5722;
    color: white;
    border-radius: 0 50px 50px 0;
}
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}
.social-links img {
    height: 30px;
    margin: 0 10px;
}