        /* Terms and Conditions Page Styles */
        .container {
            max-width: 1300px;
            margin: 30px auto;
            padding: 20px;
            border-radius: 15px;
            background-color: white;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 1px 6px 0px #00000026;
            min-height: 100vh;
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 3px solid var(--primary-color);
        }

        .header h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            font-weight: 600;
            background: linear-gradient(180deg, #2A1284 0%, #9164F4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;

        }

        .intro {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            border-left: 4px solid var(--primary-color);
        }

        .intro p {
            margin-bottom: 10px;
        }

        .section {
            margin-bottom: 30px;
        }

        .section h2 {
            color: var(--primary-color);
            font-size: 1.4em;
            margin-bottom: 15px;
            padding-bottom: 5px;
            border-bottom: 2px solid #e9ecef;
        }

        .section h3 {
            color: #495057;
            font-size: 1.1em;
            margin-bottom: 10px;
            margin-top: 20px;
        }

        .section p {
            margin-bottom: 15px;
            text-align: justify;
        }

        .subsection {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .prohibited-list {
            background-color: #fff3cd;
            padding: 15px;
            border-radius: 5px;
            border-left: 4px solid #ffc107;
            margin: 15px 0;
        }

        .prohibited-list ul {
            list-style-type: none;
            padding-left: 0;
        }

        .prohibited-list li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .prohibited-list li:before {
            content: "⚠";
            position: absolute;
            left: 0;
            color: #dc3545;
            font-weight: bold;
        }

        .highlight-box {
            background-color: #EFEBFF;
            padding: 15px;
            border-radius: 5px;
            border-left: 4px solid #9164F4;
            margin: 15px 0;
        }

        .warning-box {
            background-color: #ffebee;
            padding: 15px;
            border-radius: 5px;
            border-left: 4px solid #f44336;
            margin: 15px 0;
        }

        .footer {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 2px solid #e9ecef;
            text-align: center;
            color: #6c757d;
            font-size: 0.9em;
        }

        @media (max-width: 768px) {
            .container {
                padding: 15px;
                margin: 10px;
                width: 96%;
                display: flex;
                flex-direction: column;
            }
            
            .header h1 {
                font-size: 2em;
            }
            
            .subsection {
                margin-left: 10px;
            }
            .main-page {
                padding-top: 70px !important;
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
        }

        [lang ="ar"] {
            .intro {
                border-right: 4px solid var(--primary-color);
                border-left: unset;
            }
            .highlight-box {
                border-right: 4px solid #9164F4;
                border-left: unset;
            }
            .warning-box {
                border-right: 4px solid #f44336;
                border-left: unset;
            }
            .prohibited-list {
                border-right: 4px solid #ffc107;
                border-left: unset;
            }
            .prohibited-list ul {
                list-style-type: none;
                padding-left: 0;
                padding-right: unset;
                direction: rtl;
            }
            .prohibited-list li {
                margin-bottom: 8px;
                padding-left: unset;
                padding-right: 25px;
                position: relative;
            }
            .prohibited-list li:before {
                content: "⚠";
                position: absolute;
                left: unset;
                right: 0;
                color: #dc3545;
                font-weight: bold;
            }
        }