* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
body {
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    text-align: center;
}
header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
header p {
    font-size: 1.1rem;
    opacity: 0.9;
}
.features {
    background-color: white;
    padding: 40px 0;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.features h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2c3e50;
}
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.feature-item {
    padding: 20px;
    border-left: 4px solid #3498db;
    background-color: #f8f9fa;
    border-radius: 4px;
}
.feature-item h3 {
    color: #3498db;
    margin-bottom: 10px;
}
/* Section styles for steps, use cases, sync, automation, why us, FAQ */
.steps, .use-cases, .sync, .automation, .why-us, .faq {
    background-color: white;
    padding: 40px 0;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.8rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}
h3 {
    color: #3498db;
    margin: 20px 0 15px;
    font-size: 1.4rem;
}
ol, ul {
    margin-left: 25px;
    margin-bottom: 20px;
}
li {
    margin-bottom: 10px;
}
/* Call to Action Section */
.cta-section {
    background-color: #3498db;
    color: white;
    padding: 40px 0;
    text-align: center;
    border-radius: 8px;
    margin: 30px 0;
}
.cta-button {
    display: inline-block;
    background-color: #2c3e50;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin: 10px 5px;
    transition: background-color 0.3s;
}
.cta-button:hover {
    background-color: #1a252f;
}
/* Footer styles */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

footer a {
    color: #bbb;
}

/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {
    header h1 {
font-size: 1.8rem;
    }
    h2 {
font-size: 1.5rem;
    }
    h3 {
font-size: 1.2rem;
    }
    .feature-list {
grid-template-columns: 1fr;
    }
}