body {
            font-family: 'Poppins', sans-serif;
            /* Account for fixed navbar */
            /* padding-top: 76px;  */
        }
        
        .hero-section {
            background: linear-gradient(135deg, #1DA1F2 0%, #47F0F8 100%);
            padding: 80px 0;
            min-height: 60vh;
            display: flex;
            align-items: center;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        
        .hero-image {
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        
        .hero-image:hover {
            transform: translateY(-10px);
        }
        
        .content-section {
            padding: 60px 0;
        }
        
        .content-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }
        
        .content-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1.5rem;
        }
        
        .highlight-text {
            background: linear-gradient(45deg, #1DA1F2, #47F0F8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin: 0 10px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-links .facebook {
            background: #3b5998;
            color: white;
        }
        
        .social-links .instagram {
            background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
            color: white;
        }
        
        .social-links a:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        .cta-button {
            background: linear-gradient(45deg, #1DA1F2, #47F0F8);
            border: none;
            border-radius: 50px;
            padding: 15px 40px;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .cta-button:hover {
            background: linear-gradient(45deg, #0d8bd9, #2ee0e8);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(29, 161, 242, 0.3);
            color: white;
        }
        
        .faq-section {
            background: #f8f9fa;
            padding: 80px 0;
        }
        
        .faq-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 3rem;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .accordion-header {
            border-radius: 15px;
        }
        
        .accordion-button {
            background: white;
            border: none;
            padding: 20px 25px;
            font-weight: 600;
            color: #2c3e50;
            border-radius: 15px;
        }
        
        .accordion-button:not(.collapsed) {
            background: linear-gradient(45deg, #1DA1F2, #47F0F8);
            color: white;
            box-shadow: none;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }
        
        .accordion-body {
            padding: 25px;
            background: white;
            color: #555;
            line-height: 1.7;
        }
        
        .final-cta {
            background: linear-gradient(135deg, #1DA1F2, #47F0F8);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .final-cta h4 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .final-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .final-cta .cta-button {
            background: white;
            color: #1DA1F2;
        }
        
        .final-cta .cta-button:hover {
            background: #f8f9fa;
            color: #0d8bd9;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .content-card {
                padding: 30px 20px;
            }
            
            .hero-section {
                padding: 40px 0;
            }
        }
        