* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 40px 0 20px;
    text-align: center;
}

h1 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.tagline {
    color: #34495e;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 30px 0;
}

.benefits {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.benefits h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.benefits ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
}

.benefits li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.benefits li::before {
    content: "✅";
    position: absolute;
    left: 0;
}

.features {
    margin-bottom: 30px;
}

.features h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.feature-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.feature-card h3 {
    color: #3498db;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.how-to {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.how-to h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.how-to .intro {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.step {
    margin-bottom: 20px;
}

.step h3 {
    color: #3498db;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step ol {
    padding-left: 20px;
    margin-bottom: 10px;
}

.step li {
    margin-bottom: 8px;
}

.example {
    background-color: #e8f4fd;
    padding: 10px 15px;
    border-left: 4px solid #3498db;
    margin: 10px 0;
    font-size: 0.95rem;
}

.api-note {
    background-color: #f0f8fb;
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
    border-left: 4px solid #2980b9;
}

.api-note strong {
    color: #2980b9;
}

.automation {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.automation h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.automation .step {
    margin-bottom: 15px;
}

.faq {
    margin-bottom: 30px;
}

.faq h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.faq-item {
    background-color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #3498db;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cta {
    background-color: #3498db;
    color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
}

.cta h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #3498db;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #f0f0f0;
}

		code {
		  font-family: Consolas, monospace;
		}

footer {
    text-align: center;
    padding: 20px 0;
    color: #777;
    font-size: 0.9rem;
    border-top: 1px solid #e0e0e0;
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
font-size: 1.8rem;
    }

    .benefits ul {
grid-template-columns: 1fr;
    }

    .cta h2 {
font-size: 1.6rem;
    }
}