        /* ===== MOBILE-FRIENDLY ABOUT SECTION ===== */
        .about-section {
            padding: 80px 0;
            background: #111;
        }
        
        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Mobile-first grid */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px;
        }
        
        @media (min-width: 992px) {
            .about-grid {
                grid-template-columns: 1fr 1fr;
                gap: 60px;
                align-items: center;
            }
        }
        
        /* Left side - Text content */
        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #FFD700;
            font-weight: 700;
        }
        
        .about-content h2 span {
            color: white;
        }
        
        .about-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 25px;
        }
        
        /* Pillars with images */
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        @media (min-width: 768px) {
            .pillars-grid {
                gap: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .pillars-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }
        
        .pillar {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 1;
            transition: transform 0.3s ease;
        }
        
        .pillar:hover {
            transform: translateY(-5px);
        }
        
        .pillar-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .pillar:hover .pillar-image {
            transform: scale(1.05);
        }
        
        .pillar-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            padding: 20px;
            padding-top: 40px;
        }
        
        .pillar-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #FFD700;
            margin-bottom: 5px;
        }
        
        .pillar-desc {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.4;
        }
        
        /* CTA Button */
        .about-cta {
            padding: 12px 30px;
            background: transparent;
            border: 2px solid #FFD700;
            color: #FFD700;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
        }
        
        .about-cta:hover {
            background: #FFD700;
            color: black;
            transform: translateY(-2px);
        }
