.terms-hero-area {
	background-position: center bottom;
	position: relative;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-image: url('/plugins/img/tos.jpg');
	background-repeat: no-repeat;
}
        .terms-hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        .terms-hero-area::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
          
            z-index: 1;
        }
        .terms-hero-content {
	position: relative;
	z-index: 2;
	max-width: 1500px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}
        .terms-hero-content h1 {
            font-size: 48px;
            color: #000000;
            margin-bottom: 30px;
            font-weight: 400;
            font-family: 'Work Sans', sans-serif;
        }
        .terms-hero-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: rgb(255, 255, 255);
            color: #000000;
            border: 1px solid #ffffff;
            border-radius: 25px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .terms-hero-btn:hover {
            background-color: #ffffff;
            color: #333333;
        }
        .terms-area {
            padding: 60px 20px;
            background-color: #f5f5f5;
        }
        .terms-container {
            max-width: 1500px;
            margin: 0 auto;
        }
        .terms-card {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 50px 60px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .terms-card h2 {
            font-size: 28px;
            color: #333333;
            margin-bottom: 40px;
            font-weight: 600;
            text-align: center;
        }
        .terms-section {
            margin-bottom: 35px;
        }
        .terms-section:last-child {
            margin-bottom: 0;
        }
        .terms-section h3 {
            font-size: 18px;
            color: #333333;
            margin-bottom: 15px;
            font-weight: 600;
        }
        .terms-section p {
            font-size: 15px;
            color: #666666;
            line-height: 1.9;
            text-align: justify;
            margin-bottom: 12px;
        }
        .terms-section p:last-child {
            margin-bottom: 0;
        }
        .terms-highlight {
            color: #e74c3c;
            font-weight: 500;
        }

        @media screen and (max-width: 768px) {
            .terms-hero-area {
                height: 180px;
                background-position: center center;
                background-repeat: no-repeat;
                background-size: cover;
            }
            .terms-hero-video {
                display: none;
            }
            .terms-hero-content h1 {
                font-size: 32px;
				padding-top: 20px;
            }
            .terms-hero-content p {
                font-size: 16px;
            }
            .terms-area {
                padding: 40px 15px;
            }
            .terms-card {
                padding: 30px 20px;
            }
            .terms-card h2 {
                font-size: 24px;
                margin-bottom: 30px;
            }
            .terms-section h3 {
                font-size: 16px;
            }
            .terms-section p {
                font-size: 14px;
            }
        }