/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    color: #333;
    padding: 50px 20px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(25, 118, 210, 0.08);
    position: relative;
    overflow: hidden;
}

/* .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1976d2, #ffb300);
} */

.hero-badge {
    display: inline-block;
    background-color: #e3f2fd;
    color: #1976d2;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid #bbdefb;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1976d2;
    line-height: 1.2;
}

.hero-content .tagline {
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: 600;
    color: #ffb300;
}

.hero-content .description {
    font-size: 1.05em;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
    color: #555;
}

.hero-content .btn-primary {
    margin-bottom: 50px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 2px solid #ffb300;
}

.highlight {
    padding: 25px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(25, 118, 210, 0.1);
}

.highlight-number {
    font-size: 2.5em;
    color: #1976d2;
    font-weight: 700;
    margin-bottom: 8px;
}

.highlight p {
    font-size: 0.95em;
    color: #666;
    font-weight: 500;
}

/* Primary Button */
.btn-primary {
    display: inline-block;
    background-color: #ffb300;
    color: #333;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #ff9800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    padding: 0px 20px;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #1976d2;
    font-weight: bold;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #ffb300;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-left-color: #1976d2;
}

.feature-card h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #1976d2;
    font-weight: bold;
}

.feature-card p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.5;
}

/* CTA Section */
.cta {
    background: white;
    color: #333;
    padding: 50px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #1976d2;
}

.cta p {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

/* Secondary Button */
.btn-secondary {
    display: inline-block;
    background-color: #1976d2;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #ffb300;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8em;
    }

    .hero-content .tagline {
        font-size: 1.1em;
    }

    .features h2,
    .cta h2 {
        font-size: 1.5em;
    }

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