
    .hero-content {
        position: relative;
        z-index: 2;
        padding: 80px 0;
    }
    
    .hero-text {
        max-width: 500px;
        margin-top: 50px;
    }
    
    .hero-text h6 {
        color: #6c757d;
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
        font-weight: 800;
        color: #212529;
        margin-bottom: 10px;
        line-height: 1.1;
    }
    
    .hero-text h4 {
        color: #6c757d;
        font-weight: 400;
        margin-bottom: 30px;
    }
    
    /* About Section */
    .about-section {
        padding: 100px 0;
        background: #ffffff;
    }
    
    .about-text {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 80px;
    }
    
    .service-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }
    
    .service-card {
        text-align: center;
        padding: 40px 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        background: white;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    
    .service-icon {
        font-size: 3rem;
        color: #fa2851;
        margin-bottom: 20px;
    }
    
    .service-card h4 {
        color: #212529;
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .service-card p {
        color: #6c757d;
        line-height: 1.6;
    }
    
    /* Services Section */
    .services-section {
        padding: 100px 0;
        background: #f8f9fa;
    }
    
    .services-header {
        text-align: center;
        margin-bottom: 80px;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
    }
    
    /* Pricing Section with matching gradient cards */
    .pricing-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #fa2851 0%, #6610f2 100%);
        position: relative;
        overflow: hidden;
    }
    
    .pricing-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>') repeat;
        animation: float 20s infinite linear;
    }
    
    .pricing-content {
        position: relative;
        z-index: 2;
    }
    
    .pricing-header {
        text-align: center;
        color: white;
        margin-bottom: 80px;
    }
    
    .pricing-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .pricing-card {
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 20px;
        padding: 40px;
        color: white;
    }
    
    .pricing-card h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
        color: white;
    }
    
    .pricing-card ul {
        list-style: none;
        padding: 0;
    }
    
    .pricing-card ul li {
        padding: 8px 0;
        display: flex;
        align-items: center;
    }
    
    .pricing-card ul li i {
        margin-right: 15px;
        font-size: 1.2rem;
    }
    
    /* Reviews Section */
    .reviews-section {
        padding: 100px 0;
        background: white;
        position: relative;
        overflow: hidden;
    }
    
    .reviews-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, #fa2851 0%, transparent 50%, #ffc107 100%);
        opacity: 0.05;
    }
    
    .reviews-header {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        z-index: 2;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #212529 0%, #495057 100%);
        position: relative;
        overflow: hidden;
    }
    
    .contact-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: linear-gradient(135deg, #fa2851 0%, #ffc107 100%);
        transform: skewX(15deg);
        transform-origin: top right;
    }
    
    .contact-content {
        position: relative;
        z-index: 2;
        color: white;
    }
    
    .contact-header {
        text-align: center;
        color: white;
        margin-bottom: 80px;
    }
    
    .contact-info {
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 30px;
        margin-bottom: 30px;
        border: 1px solid rgba(255,255,255,0.2);
    }
    
    .contact-info h5 {
        color: white;
        margin-bottom: 15px;
    }
    
    .contact-info p {
        color: rgba(255,255,255,0.9);
        margin-bottom: 5px;
    }
    
    .contact-info a {
        color: #ffc107;
        text-decoration: none;
    }
    
    .contact-info a:hover {
        color: white;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .hero-text h1 {
            font-size: 2.5rem;
        }
        
        .flac-hero::before {
            width: 100%;
            transform: skewY(-5deg);
        }
        
        .service-grid,
        .services-grid,
        .pricing-cards {
            grid-template-columns: 1fr;
        }
        
        .pricing-card {
            margin-bottom: 30px;
        }
        
        .contact-section::before {
            width: 100%;
            transform: skewY(5deg);
        }
    }
    
    @keyframes float {
        0% { transform: translateX(0px) translateY(0px); }
        100% { transform: translateX(-100px) translateY(-100px); }
    }