.elementor-1644 .elementor-element.elementor-element-c64510c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-24c875f *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f7f3ff 0%, #fffbe7 100%);
    min-height: 100vh;
}

.rewards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #5539a0 0%, #a084f7 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    box-shadow: 0 8px 32px rgba(85, 57, 160, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-icon {
    width: 60px;
    height: 60px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    color: #5539a0;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #5539a0, #a084f7);
    border-radius: 2px;
}

/* How It Works Section */
.how-it-works {
    margin-bottom: 80px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(85, 57, 160, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5539a0, #a084f7);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(85, 57, 160, 0.2);
    border-color: #a084f7;
}

.step-icon {
    margin-bottom: 20px;
    display: block;
}

.step-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.step-card h3 {
    color: #5539a0;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* Earning Section */
.earning-section {
    margin-bottom: 80px;
}

.earning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.earning-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(85, 57, 160, 0.1);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.earning-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(85, 57, 160, 0.15);
    border-color: #a084f7;
}

.earning-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.earning-card h3 {
    color: #5539a0;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.earning-rate {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.earning-rate strong {
    color: #5539a0;
    font-weight: 700;
}

.earning-details {
    list-style: none;
    padding: 0;
}

.earning-details li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.earning-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5539a0;
    font-weight: bold;
}

/* Redeeming Section */
.redeeming-section {
    margin-bottom: 80px;
}

.redeeming-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.redeeming-info, .redeeming-steps {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(85, 57, 160, 0.1);
}

.redeeming-info h3, .redeeming-steps h3 {
    color: #5539a0;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.conversion-rates {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rate-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f7f3ff 0%, #fffbe7 100%);
    border-radius: 12px;
    border: 2px solid #a084f7;
}

.points {
    font-weight: 700;
    color: #5539a0;
    font-size: 1.1rem;
}

.equals {
    color: #666;
    font-weight: 600;
}

.value {
    color: #5539a0;
    font-weight: 600;
    font-size: 1.1rem;
}

.redeeming-list {
    padding-left: 20px;
}

.redeeming-list li {
    padding: 10px 0;
    color: #666;
    font-size: 1.1rem;
}

.redeeming-list li::marker {
    color: #5539a0;
    font-weight: bold;
}

/* Rules Section */
.rules-section {
    margin-bottom: 80px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.rules-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(85, 57, 160, 0.1);
    border-left: 4px solid #5539a0;
}

.rules-card h3 {
    color: #5539a0;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.rules-card ul {
    list-style: none;
    padding: 0;
}

.rules-card li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.rules-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #5539a0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Tips Section */
.tips-section {
    margin-bottom: 80px;
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tip-card {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(85, 57, 160, 0.1);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(85, 57, 160, 0.15);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.tip-card h3 {
    color: #5539a0;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.tip-card p {
    color: #666;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #5539a0 0%, #a084f7 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    margin-bottom: 80px;
    box-shadow: 0 8px 32px rgba(85, 57, 160, 0.3);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary {
    background: #ffd600;
    color: white;
    border: 2px solid #ffd600;
}

.cta-button.primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #5539a0;
    transform: translateY(-2px);
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.benefit-icon {
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 60px;
}

.faq-container {
    display: grid;
    gap: 25px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(85, 57, 160, 0.1);
    border-left: 4px solid #5539a0;
}

.faq-item h3 {
    color: #5539a0;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rewards-container {
        padding: 15px;
    }
    
    .hero-section {
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .redeeming-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 20px;
    }
    
    .earning-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .step-card, .earning-card, .rules-card, .tip-card {
        padding: 25px 20px;
    }
    
    .redeeming-info, .redeeming-steps {
        padding: 25px 20px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}/* End custom CSS */