 .sidebar-toggle {
            display: none;
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1003;
            background: rgba(255, 255, 255, 0.15);
            border: none;
            border-radius: 8px;
            padding: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .sidebar-toggle:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.05);
        }

        .hamburger-icon {
            width: 20px;
            height: 15px;
            position: relative;
            transform: rotate(0deg);
            transition: 0.3s ease-in-out;
            cursor: pointer;
        }

        .hamburger-icon span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: #fff;
            border-radius: 2px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: 0.25s ease-in-out;
        }

        .hamburger-icon span:nth-child(1) {
            top: 0px;
        }

        .hamburger-icon span:nth-child(2) {
            top: 7px;
        }

        .hamburger-icon span:nth-child(3) {
            top: 14px;
        }

        .sidebar-toggle.active .hamburger-icon span:nth-child(1) {
            top: 7px;
            transform: rotate(135deg);
        }

        .sidebar-toggle.active .hamburger-icon span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }

        .sidebar-toggle.active .hamburger-icon span:nth-child(3) {
            top: 7px;
            transform: rotate(-135deg);
        }

        /* Navigation Overlay */
        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav-overlay.active {
            display: block;
            opacity: 1;
        }

        /* Responsive nav */
        @media (max-width: 900px) {
            .main-nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 200px;
                height: 100%;
                background: linear-gradient(135deg, #2c3e50, #34495e);
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
                transition: left 0.3s ease;
                z-index: 1000;
                padding-top: 80px;
                overflow-y: auto;
            }

            .main-nav.nav-open {
                left: 0;
            }

            .main-nav ul {
                flex-direction: column;
                padding: 0;
                margin: 0;
            }

            .main-nav li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .main-nav a {
                display: block;
                padding: 20px 30px;
                color: #fff;
                text-decoration: none;
                font-size: 1.1rem;
                transition: all 0.3s ease;
                border-left: 4px solid transparent;
            }

            .main-nav a:hover {
                background: rgba(255, 255, 255, 0.1);
                border-left-color: #3498db;
                padding-left: 35px;
            }

            .sidebar-toggle {
                display: block;
            }
        }

        /* Vision and Mission Card */
        .vision-mission-card {
            background: white;
            border-radius: 50px;
            padding: 40px;
            margin: 40px auto;
            max-width: 900px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border-left: 5px solid #5D576B;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .vision-mission-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(43, 54, 173, 0.25);
        }

        .vision-mission-card h1 {
            color: black;
            font-size: 2rem;
            margin: 25px 0 15px 0;
            text-align: center;
            font-weight: 700;
        }

        .vision-mission-card h1:first-child {
            margin-top: 0;
        }

        .vision-mission-card p {
            color: black;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: center;
            margin: 15px 0;
        }

        .vision-mission-card  strong {
            color: rgb(20, 21, 36);
            font-weight: 600;
        }

        /* Contact Us Card */
        .contact-card {
            background: white;
            border-radius: 50px;
            padding: 40px;
            margin: 40px auto;
            max-width: 700px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border-left: 5px solid #5D576B;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(43, 54, 173, 0.25);
        }

        .contact-card p {
            color: black;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: center;
            margin: 15px 0;
        }

        .contact-card p i {
            color: #5D576B;
            font-size: 1.2rem;
            margin-right: 10px;
        }

        /* ===== MOBILE RESPONSIVE STYLES ===== */
        @media (max-width: 768px) {
            /* Vision and Mission Card */
            .vision-mission-card {
                padding: 30px 20px;
                margin: 30px 15px;
                border-radius: 80px 0;
            }

            .vision-mission-card em h1 {
                font-size: 1.6rem;
            }

            .vision-mission-card p {
                font-size: 1rem;
            }
            
            /* Contact Card */
            .contact-card {
                padding: 30px 25px;
                margin: 30px 20px;
                border-radius: 20px;
                border-left: 5px solid #5D576B;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            }

            .contact-card p {
                font-size: 1rem;
                flex-direction: column;
                gap: 5px;
            }
        }

        /* ===== TERMS & CONDITIONS SECTION ===== */
        .terms-section-subtitle {
            text-align: center;
            color: black;
            font-size: 1rem;
            margin: -10px 0 30px;
        }

        .terms-cards-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .terms-summary-card {
            background: white;
            border-radius: 50px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 5px solid #5D576B;
        }

        .terms-summary-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 38px rgba(43,54,173,0.15);
        }

        .terms-card-icon-wrap {
            border-radius: 12px;
            width: 58px;
            height: 58px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .terms-card-icon-wrap i {
            font-size: 1.8rem;
            color: white;
        }

        .terms-card-body {
            flex: 1;
            width: 100%;
        }

        .terms-card-body h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: #2c3e50;
            margin: 0 0 6px 0;
        }

        .terms-card-body > p {
            color: black;
            font-size: 0.93rem;
            margin: 0 0 14px 0;
        }

        .terms-summary-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 7px 24px;
        }

        .terms-summary-list li {
            color: black;
            font-size: 0.87rem;
            display: flex;
            align-items: flex-start;
            gap: 7px;
            line-height: 1.5;
        }

        .terms-summary-list li::before {
            content: "✓";
            color: #27ae60;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .terms-card-action {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin-top: auto;
        }

        .btn-see-details {
            background: linear-gradient(135deg, #5D576B, #2c3e50);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 0.88rem;
            font-weight: 600;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .btn-see-details:hover {
            background: linear-gradient(135deg, #2c3e50, #1a252f);
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(44,62,80,0.3);
        }

        /* ===== T&C MODALS ===== */
        .tc-modal-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.6);
            z-index: 9000;
            animation: tcFadeIn 0.25s ease;
        }

        .tc-modal-overlay.active {
            display: block;
        }

        .tc-modal-box {
            display: none;
            flex-direction: column;
            position: fixed;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            z-index: 9001;
            width: 92%;
            max-width: 700px;
            max-height: 88vh;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.35);
            animation: tcSlideUp 0.3s ease;
        }

        .tc-modal-box.active {
            display: flex;
        }

        @keyframes tcFadeIn {
            from { opacity: 0; }
            to   { opacity: 1; }
        }

        @keyframes tcSlideUp {
            from { transform: translate(-50%, -42%); opacity: 0; }
            to   { transform: translate(-50%, -50%); opacity: 1; }
        }

        .tc-modal-header {
            background: linear-gradient(135deg, #5D576B, #2c3e50);
            color: white;
            padding: 20px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;
        }

        .tc-modal-header h2 {
            margin: 0;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .tc-modal-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            line-height: 1;
            padding: 0;
            opacity: 0.8;
            transition: opacity 0.2s;
        }

        .tc-modal-close:hover { opacity: 1; }

        .tc-modal-body {
            padding: 25px 30px;
            overflow-y: auto;
            flex: 1;
        }

        .tc-modal-body h3 {
            color: #2c3e50;
            font-size: 1.08rem;
            margin: 0 0 4px 0;
        }

        .tc-modal-body h4 {
            color: #2c3e50;
            margin: 20px 0 8px;
            font-size: 0.95rem;
            border-left: 3px solid #5D576B;
            padding-left: 10px;
        }

        .tc-modal-body p {
            color: black;
            font-size: 0.88rem;
            line-height: 1.75;
            margin: 4px 0;
        }

        .tc-modal-footer {
            padding: 14px 25px;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: flex-end;
            flex-shrink: 0;
            background: #f7f7f7;
        }

        .tc-btn-close {
            background: #6c757d;
            color: white;
            border: none;
            padding: 10px 22px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 7px;
            transition: background 0.2s ease;
        }

        .tc-btn-close:hover { background: #5a6268; }

        /* Responsive */
        @media (max-width: 900px) {
            .terms-cards-wrapper {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .terms-summary-card {
                padding: 22px 20px;
                gap: 16px;
            }

            .terms-summary-list {
                grid-template-columns: 1fr;
            }

            .tc-modal-box {
                width: 96%;
                max-height: 92vh;
            }

            .tc-modal-body {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            /* Vision and Mission Card - Small Mobile */
            .vision-mission-card {
                padding: 25px 15px;
                margin: 20px 10px;
                border-radius: 50px;
            }

            .vision-mission-card h1 {
                font-size: 1.4rem !important;
            }

            .vision-mission-card p {
                font-size: 0.95rem;
            }
            
            /* Contact Card - Small Mobile */
            .contact-card {
                padding: 25px 20px;
                margin: 20px 16px;
                border-radius: 18px;
                border-left: 5px solid #5D576B;
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            }

            .contact-card p {
                font-size: 0.95rem;
                flex-direction: column;
                gap: 3px;
            }

            .contact-card p i {
                font-size: 1.2rem;
            }
        }