.section-heading {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: #F37022;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-heading p {
    font-size: 1.1rem;
    color: #333333;
    max-width: 600px;
    margin: 0 auto;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease forwards;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(243, 112, 34, 0.15);
    border-color: #F37022;
}

.service-header {
    margin-bottom: 25px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(243, 112, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 24px;
    color: #F37022;
}

.service-header h3 {
    font-size: 1.5rem;
    color: #F37022;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    color: #333333;
    font-weight: 600;
    margin-bottom: 20px;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.period {
    font-size: 1rem;
    color: #666666;
}

.subscription-controls {
    margin-bottom: 25px;
}

.subscription-controls label {
    display: block;
    color: #333333;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.sub-count-display {
    font-size: 1.2rem;
    color: #F37022;
    margin-bottom: 10px;
}

.slider-container {
    width: 100%;
    padding: 0 10px;
}

.range-slider {
    width: 100%;
    height: 4px;
    background: rgba(243, 112, 34, 0.2);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #F37022;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.auto-renew {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    color: #333333;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e0e0e0;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #F37022;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.products {
    padding: 60px 0;
    background: #ffffff;
}

@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 2rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
}
