* {
    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;
    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 {
    font-size: 24px;
    font-weight: bold;
}

.logo a {
    color: white;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #34495e;
}

.hero {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #c0392b;
}

.features {
    padding: 60px 0;
    background-color: white;
}

.features h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-card h3 {
    color: #2980b9;
    margin-bottom: 15px;
    font-size: 20px;
}

.conversion-scenarios {
    padding: 60px 0;
    background-color: #f1f5f9;
}

.conversion-scenarios h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.scenario {
    background-color: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.scenario h3 {
    color: #2980b9;
    margin-bottom: 15px;
    font-size: 22px;
}

.scenario ol {
    padding-left: 20px;
    margin-bottom: 10px;
}

.scenario li {
    margin-bottom: 8px;
}

.comparison {
    padding: 60px 0;
    background-color: white;
}

.comparison h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.comparison-table th {
    background-color: #3498db;
    color: white;
}

.comparison-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.faq {
    padding: 60px 0;
    background-color: #f1f5f9;
}

.faq h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.faq-item {
    background-color: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #2980b9;
    margin-bottom: 10px;
    font-size: 18px;
}

.bottom-cta {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.bottom-cta h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.bottom-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

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;
gap: 20px;
    }

    .hero h1 {
font-size: 28px;
    }

    .hero p {
font-size: 16px;
    }

    .features h2, .conversion-scenarios h2, .comparison h2, .faq h2 {
font-size: 24px;
    }

    .comparison-table th, .comparison-table td {
padding: 10px;
font-size: 14px;
    }
}