* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 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;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.logo p {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-button {
    background-color: #3498db;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #2980b9;
}

main {
    padding: 40px 0;
}

section {
    margin-bottom: 50px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.6rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

section h3 {
    color: #34495e;
    margin: 20px 0 15px;
    font-size: 1.3rem;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.benefit-card {
    padding: 20px;
    border-left: 4px solid #3498db;
    background-color: #f8f9fa;
}

.steps {
    list-style: none;
    counter-reset: step-counter;
}

.steps li {
    position: relative;
    padding: 15px 15px 15px 50px;
    margin-bottom: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.steps li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.use-case-card {
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h4::after {
    content: '+';
    color: #3498db;
    font-size: 1.2rem;
}

.faq-item p {
    display: none;
    padding-left: 10px;
    color: #555;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer a {
    color: #bbb;
}

@media (max-width: 768px) {
    .header-content {
flex-direction: column;
text-align: center;
    }

    .logo {
margin-bottom: 20px;
    }

    section {
padding: 20px;
    }

    h1 {
font-size: 1.5rem;
    }

    h2 {
font-size: 1.4rem;
    }
}