/* Rebel App Section Styles */
.rebel-app-section {
    padding: 60px 0;
    background-color: #FBFBF7;
    position: relative;
    overflow: hidden;
}

.rebel-app-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rebel-app-title {
    font-family: 'GIAZA', sans-serif;
    color: #0a4697;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.rebel-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.rebel-feature {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rebel-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.rebel-feature-icon {
    width: 50px;
    height: 50px;
    background-color: #f3471f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.rebel-feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.rebel-feature-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.rebel-feature-description {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.features-column {
    flex: 1;
    min-width: 300px;
}

.video-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Responsive styles */
@media (max-width: 991px) {
    .rebel-app-title {
        font-size: 2.2rem;
    }
    
    .flex-container {
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .rebel-app-section {
        padding: 40px 0;
    }
    
    .rebel-app-title {
        font-size: 2rem;
    }
    
    .rebel-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .flex-container {
        flex-direction: column;
    }
    
    .features-column, 
    .video-column {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .rebel-app-title {
        font-size: 1.8rem;
    }
    
    .rebel-feature {
        padding: 15px;
    }
    
    .rebel-feature-title {
        font-size: 1.1rem;
    }
    
    .rebel-feature-description {
        font-size: 0.9rem;
    }
}
