body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #1a1d21;
}

main {
    flex: 1;
}

.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 1.4rem;
}

.table-dark {
    --bs-table-bg: transparent;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    color: inherit;
}

.accordion-button::after {
    filter: invert(1);
}

.form-control:focus,
.form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.display-4 {
    font-weight: 700;
}

.badge {
    font-weight: 500;
}

.hero-section {
    min-height: 100vh;
    padding-top: 100px;
    background: linear-gradient(135deg, #1a1d21 0%, #0d1117 50%, #1a1d21 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(13, 110, 253, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(13, 110, 253, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(13, 110, 253, 0.5);
}

.stat-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-card p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(13, 110, 253, 0.5);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.75rem;
}

.service-card h4 {
    margin-bottom: 1rem;
}

.service-card ul li {
    padding: 0.25rem 0;
}

.why-card {
    padding: 1rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.02) 100%);
    border: 1px solid rgba(13, 110, 253, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.pricing-card.featured {
    border-color: rgba(13, 110, 253, 0.5);
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.02) 100%);
}

.pricing-amount {
    margin: 1.5rem 0;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    vertical-align: super;
    color: #6c757d;
}

.pricing-amount .amount {
    font-size: 3.5rem;
    font-weight: 700;
}

.pricing-amount .period {
    font-size: 1rem;
    color: #6c757d;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 3rem;
    }
    
    .hero-stats-grid {
        margin-top: 3rem;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-amount .amount {
        font-size: 2.5rem;
    }
}
