 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* What is Section */
.what-is-section {
    padding: 80px 0;
    background: white;
    width: 100%;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
    color: #111827;
}

.section-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon svg {
    width: 14px;
    height: 14px;
}

.feature-text {
    font-size: 16px;
    color: #374151;
}

/* For Whom Section */
.for-whom-section {
    padding: 80px 0;
    background: #f9fafb;
    width: 100%;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.info-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #dbeafe;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.card-description {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: white;
    width: 100%;
}

/* Profitable Section */
.profitable-section {
    padding: 80px 0;
    background: #f9fafb;
    width: 100%;
}

.comparison-box {
    max-width: 900px;
    margin: 40px auto 0;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.comparison-item {
    text-align: center;
}

.comparison-label {
    font-size: 14px;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}

.comparison-value {
    font-size: 36px;
    font-weight: bold;
    color: #111827;
}

.comparison-value.highlight {
    color: #16a34a;
}

.savings-banner {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    padding: 24px;
    border-radius: 8px;
    text-align: center;
}

.savings-text {
    font-size: 20px;
    font-weight: 600;
    color: #166534;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title{
        font-size: 28px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .comparison-box {
        padding: 24px;
    }
}