        :root {
            --primary: #E4A752;
            --primary-dark: #da8661;
            --secondary: #2e3f61;
            --light: #f8f9fa;
            --dark: #212529;
            --text: #252525;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            background-color: #fafafa;
            line-height: 1.8;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            color: var(--secondary);
        }

        .terms-header {
            background-size: cover;
            background-position: center;
            padding: 160px 0px 100px 0px;
            color: white;
            text-align: center;
            margin-bottom: 60px;

        }

        

        .terms-header h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            color: var( --light);
        }

        .terms-container {
            max-width: 1200px;
            margin: 0 auto 80px;
            padding: 0 20px;
        }

        .terms-card {
            background-color: var(--white);
            padding: 50px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .terms-section {
            margin-bottom: 40px;
        }

        .terms-section h2 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--secondary);
            position: relative;
            padding-left: 20px;
        }

        .terms-section h2:before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            height: 80%;
            width: 5px;
            background-color: var(--primary);
        }

        .terms-point {
            margin-bottom: 30px;
            position: relative;
            padding-left: 35px;
        }

        .terms-point h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--secondary);
            display: flex;
            align-items: center;
        }

        .terms-point h3:before {
            content: '';
            display: inline-block;
            width: 25px;
            height: 25px;
            background-color: var(--primary);
            border-radius: 50%;
            margin-right: 10px;
            position: absolute;
            left: 0;
        }

        .terms-point p {
            margin-bottom: 10px;
            font-size: 1.1rem;
            padding-left: 35px;
        }

        .highlight-box {
            background: rgba(228, 167, 82, 0.1);
            padding: 20px;
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
            margin: 20px 0;
        }
        ul

 {
    list-style: none;
    margin-bottom: 0px;
    color: var(--text);
}

        /* Responsive */
        @media (max-width: 768px) {
            .terms-header {
                padding: 80px 0;
            }
            
            .terms-header h1 {
                font-size: 2.2rem;
            }
            
            .terms-card {
                padding: 30px;
            }
            
            .terms-section h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .terms-header h1 {
                font-size: 1.8rem;
            }
            
            .terms-card {
                padding: 25px;
            }
            
            .terms-point {
                padding-left: 25px;
            }
            
            .terms-point h3:before {
                width: 20px;
                height: 20px;
            }
            
            .terms-point p {
                padding-left: 25px;
            }
        }

