
        .about-section {
            padding: 100px 0 80px 0;
            flex-grow: 1;
        }

        /* Hero Header Style */
        .about-hero {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .page-title {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 5px;
            background: linear-gradient(180deg, #ffffff 0%, #a0a0a0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 10px 30px rgba(0,0,0,0.5);
            letter-spacing: 2px;
        }
        
        .page-subtitle {
            color: #FFC107;
            font-size: 1.2rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            font-weight: 700;
            position: relative;
            display: inline-block;
            padding: 0 20px;
        }
        
        .page-subtitle::before, .page-subtitle::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #FFC107);
        }
        .page-subtitle::before { right: 100%; }
        .page-subtitle::after { left: 100%; background: linear-gradient(90deg, #FFC107, transparent); }

        /* Text Box Style (Main) - Cyberpunk/Tech Panel */
        .about-text-box {
            background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.98));
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 4px;
            padding: 50px;
            margin-bottom: 50px;
            position: relative;
            box-shadow: 0 20px 50px rgba(0,0,0,0.6);
            backdrop-filter: blur(10px);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .about-text-box:hover {
            transform: translateY(-2px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.8);
            border-color: rgba(255, 193, 7, 0.2);
        }

        /* Decorative Corners */
        .corner-accent {
            position: absolute;
            width: 15px;
            height: 15px;
            border: 2px solid #FFC107;
            transition: all 0.4s ease;
            opacity: 0.7;
        }
        
        .tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
        .tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
        .bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
        .br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

        .about-text-box:hover .corner-accent {
            width: 30px; height: 30px;
            box-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
            opacity: 1;
        }

        .about-text-box p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #ccc;
            margin-bottom: 25px;
            text-align: justify;
        }

        .about-text-box strong {
            color: #fff;
            font-weight: 700;
        }
        
        .highlight-gold {
            color: #FFC107 !important;
            text-shadow: 0 0 10px rgba(255, 193, 7, 0.2);
        }

        /* Policy Cards (Bottom) */
        .policy-card {
            background: linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
            border: 1px solid #222;
            border-radius: 12px;
            padding: 35px 25px;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        /* Shine Effect on Hover */
        .policy-card::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
            transition: 0.5s;
            pointer-events: none;
        }

        .policy-card:hover {
            transform: translateY(-10px);
            border-color: #FFC107;
            box-shadow: 0 15px 40px rgba(0,0,0,0.6);
        }
        
        .policy-card:hover::before {
            left: 100%;
        }

        .policy-icon-wrapper {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 25px;
            transition: 0.3s;
            color: #888;
        }
        
        .policy-card:hover .policy-icon-wrapper {
            background: #FFC107;
            color: #000;
            border-color: #FFC107;
            box-shadow: 0 0 25px rgba(255, 193, 7, 0.5);
            transform: rotateY(180deg);
        }
        
        .policy-card:hover .policy-icon-wrapper i {
            transform: rotateY(-180deg); /* Counter rotate icon */
        }

        .policy-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
            
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .policy-text {
            color: #888;
            font-size: 0.95rem;
            margin-bottom: 25px;
            flex-grow: 1;
            line-height: 1.5;
        }

        .btn-policy {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 1px solid #FFC107;
            color: #FFC107;
            padding: 10px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            transition: 0.3s;
            position: relative;
            overflow: hidden;
            
        }

        .btn-policy:hover {
            background: #FFC107;
            color: #000;
            box-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
        }

        @media (max-width: 768px) {
            .page-title { font-size: 2.5rem; }
            .about-text-box { padding: 30px 20px; }
        }