﻿.reseller-hero {
    background: linear-gradient(135deg, #fa8c16 0%, #e67d0e 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 50px;
}

.reseller-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.reseller-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.features-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

    .section-title h2 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .section-title p {
        font-size: 1.2rem;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    margin-bottom: 30px;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.feature-icon {
    width: 90px;
    height: 90px;
    background: #fff7e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fa8c16;
    font-size: 36px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

.how-to-section {
    padding: 80px 0;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.step-card {
    flex: 0 0 calc(33.333% - 30px);
    text-align: center;
    padding: 40px 30px;
    background: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #fa8c16;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 25px;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #333;
}

.step-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

.cta-section {
    background: linear-gradient(135deg, #fa8c16 0%, #e67d0e 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    margin: 80px 0;
}

    .cta-section h2 {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }

    .cta-section p {
        font-size: 1.3rem;
        max-width: 700px;
        margin: 0 auto 35px;
        line-height: 1.6;
    }

.btn-primary-large {
    background: white;
    color: #fa8c16;
    border: none;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .btn-primary-large:hover {
        background: #fff7e6;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

.support-section {
    padding: 80px 0;
    text-align: center;
}

.support-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.support-card {
    flex: 0 0 350px;
    padding: 40px 30px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .support-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

.support-icon {
    font-size: 3rem;
    color: #fa8c16;
    margin-bottom: 25px;
}

.support-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.support-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.05rem;
}

@media (max-width: 992px) {
    .step-card {
        flex: 0 0 calc(50% - 20px);
    }

    .reseller-hero h1 {
        font-size: 2.4rem;
    }

    .reseller-hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .reseller-hero {
        padding: 70px 0;
    }

        .reseller-hero h1 {
            font-size: 2.2rem;
        }

        .reseller-hero p {
            font-size: 1.1rem;
        }

    .step-card {
        flex: 0 0 100%;
    }

    .support-card {
        flex: 0 0 100%;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }

    .cta-section p {
        font-size: 1.2rem;
    }
}

