:root {
            --primary-color: #3498db;
            --secondary-color: #2ecc71;
            --tertiary-color: #e74c3c;
            --accent-color1: #9b59b6;
            --accent-color2: #f39c12;
            --accent-color3: #1abc9c;
            --bg-light: #f8f9fa;
            --text-dark: #2c3e50;
            --shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        
        .six-links-section {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 2rem;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-radius: 20px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        
        .six-links-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            animation: backgroundMove 60s linear infinite;
            opacity: 0.3;
            z-index: 0;
        }
        
        @keyframes backgroundMove {
            0% {
                background-position: 0 0;
            }
            100% {
                background-position: 500px 500px;
            }
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            color: var(--text-dark);
            position: relative;
            z-index: 1;
        }
        
        .section-title::after {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            margin: 0.5rem auto;
            border-radius: 2px;
        }
        
        .all-buttons-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }
        
        .subsection {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .subsection-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
            z-index: 2;
        }
        
        .subsection-header:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }
        
        .header-icon {
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }
        
        .subsection-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-dark);
        }
        
        .payment-header {
            border-left: 4px solid var(--primary-color);
        }
        
        .payment-header .header-icon {
            color: var(--primary-color);
        }
        
        .admission-header {
            border-left: 4px solid var(--secondary-color);
        }
        
        .admission-header .header-icon {
            color: var(--secondary-color);
        }
        
        .info-header {
            border-left: 4px solid var(--tertiary-color);
        }
        
        .info-header .header-icon {
            color: var(--tertiary-color);
        }
        
        .buttons-pair {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
        }
        
        .six-link-button {
            position: relative;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--text-dark);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            overflow: hidden;
            z-index: 1;
            padding: 1rem;
            text-align: center;
        }
        
        /* Button accent corner indicator */
        .six-link-button::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 40px;
            height: 40px;
            border-radius: 0 0 40px 0;
            z-index: 2;
            transition: var(--transition);
        }
        
        .payment-button {
            background: linear-gradient(145deg, #ffffff, #e6f7ff);
            box-shadow: 0 8px 15px rgba(52, 152, 219, 0.2);
        }
        
        .payment-button::before {
            background: linear-gradient(to right bottom, var(--primary-color), #74b9ff);
        }
        
        .payment-button::after {
            background-color: var(--primary-color);
        }
        
        .admission-button {
            background: linear-gradient(145deg, #ffffff, #e6fff7);
            box-shadow: 0 8px 15px rgba(46, 204, 113, 0.2);
        }
        
        .admission-button::before {
            background: linear-gradient(to right bottom, var(--secondary-color), #7bed9f);
        }
        
        .admission-button::after {
            background-color: var(--secondary-color);
        }
        
        .info-button {
            background: linear-gradient(145deg, #ffffff, #fff6e6);
            box-shadow: 0 8px 15px rgba(231, 76, 60, 0.2);
        }
        
        .info-button::before {
            background: linear-gradient(to right bottom, var(--tertiary-color), #ff7675);
        }
        
        .info-button::after {
            background-color: var(--tertiary-color);
        }
        
        .six-link-button::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            opacity: 0;
            transition: var(--transition);
            z-index: -1;
        }
        
        .six-link-button:hover {
            transform: translateY(5px);
            color: white;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }
        
        .six-link-button:hover::before {
            opacity: 1;
        }
        
        .button-icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 3;
        }
        
        .button-text {
            font-weight: 600;
            font-size: 0.9rem;
            position: relative;
            z-index: 3;
        }
        
        /* Animations for when buttons enter viewport */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        @media screen and (max-width: 992px) {
            .all-buttons-container {
                gap: 1.5rem;
            }
            
            .six-link-button {
                width: 130px;
                height: 130px;
            }
            
            .button-icon {
                font-size: 2.2rem;
            }
            
            .button-text {
                font-size: 0.8rem;
            }
        }
        
        @media screen and (max-width: 768px) {
            .six-links-section {
                padding: 1.5rem;
                margin: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .all-buttons-container {
                flex-direction: column;
                gap: 2rem;
            }
            
            .subsection {
                width: 100%;
            }
            
            .buttons-pair {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                width: 100%;
                gap: 1rem;
            }
            
            .six-link-button {
                width: 100%;
                max-width: 140px;
                height: 140px;
                margin: 0 auto;
            }
        }
        
        @media screen and (max-width: 480px) {
            .six-link-button {
                max-width: 120px;
                height: 120px;
            }
            
            .button-icon {
                font-size: 2rem;
            }
            
            .button-text {
                font-size: 0.75rem;
            }
            
            .subsection-header {
                padding: 0.4rem 0.8rem;
            }
            
            .subsection-title {
                font-size: 1rem;
            }
            
            .header-icon {
                font-size: 1.2rem;
            }
        }