        /* Base Styles - Consistent with About Us Page */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #fef9f7;
            color: #333;
            line-height: 1.6;
        }

        .terms-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px 50px;
        }

        /* Hero Section - Professional Size */
        .terms-hero {
            text-align: center;
            padding: 60px 40px;
            background: linear-gradient(135deg, #8b0000 0%, #9a0202 100%);
            color: #fff;
            border-radius: 16px;
            margin-bottom: 50px;
            box-shadow: 0 8px 30px rgba(139, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }

        .terms-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" opacity="0.03"><path d="M0,0 L100,0 L100,100 Z" fill="white"/></svg>');
            background-size: cover;
        }

        .terms-hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: -0.3px;
            position: relative;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            font-weight: 400;
            margin-bottom: 25px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-description {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 35px;
            opacity: 0.9;
            line-height: 1.7;
            position: relative;
        }

        .cta-button {
            display: inline-block;
            background-color: #fff;
            color: #8b0000;
            padding: 14px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
            border: 2px solid transparent;
            position: relative;
            z-index: 1;
            letter-spacing: 0.3px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
            background-color: #f8f8f8;
        }

        /* Content Sections */
        .terms-content {
            background-color: #fff;
            padding: 50px;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
            margin-bottom: 40px;
            font-size: 1.05rem;
            line-height: 1.7;
            border: 1px solid #f0f0f0;
        }

        .section-title {
            color: #8b0000;
            margin: 40px 0 20px;
            font-size: 1.8rem;
            font-weight: 600;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: #8b0000;
        }

        .subsection-title {
            color: #8b0000;
            margin: 30px 0 15px;
            font-size: 1.4rem;
            font-weight: 600;
        }

        .terms-content p {
            margin-bottom: 15px;
            color: #444;
        }

        .terms-content ul, .terms-content ol {
            margin: 15px 0 20px 30px;
            color: #444;
        }

        .terms-content li {
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .terms-content strong {
            color: #8b0000;
        }

        .highlight-box {
            background: linear-gradient(to right, #fff8f8, #fff5f5);
            border-left: 4px solid #8b0000;
            padding: 25px 30px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            position: relative;
        }

        .contact-box {
            background: linear-gradient(135deg, #fff8f8 0%, #fff5f5 100%);
            border: 1px solid #ffd6d6;
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
            text-align: center;
        }

        .contact-box h3 {
            color: #8b0000;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .contact-info {
            font-size: 1.1rem;
            color: #555;
            margin: 10px 0;
        }

        .contact-info i {
            color: #8b0000;
            margin-right: 10px;
            width: 20px;
        }

        /* Warning/Important Note Styling */
        .warning-note {
            background-color: #fff3f3;
            border-left: 4px solid #ff6b6b;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .terms-hero {
                padding: 50px 30px;
            }
            
            .terms-hero h1 {
                font-size: 2.4rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .terms-content {
                padding: 40px;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 768px) {
            .terms-hero {
                padding: 45px 25px;
                border-radius: 12px;
            }
            
            .terms-hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
                margin-bottom: 20px;
            }
            
            .hero-description {
                font-size: 1rem;
                margin-bottom: 25px;
            }
            
            .cta-button {
                padding: 12px 35px;
                font-size: 1rem;
            }
            
            .terms-content {
                padding: 30px;
                border-radius: 12px;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .terms-container {
                padding: 20px 15px 40px;
            }
            
            .terms-hero {
                padding: 40px 20px;
                border-radius: 10px;
            }
            
            .terms-hero h1 {
                font-size: 1.9rem;
                margin-bottom: 15px;
            }
            
            .hero-subtitle {
                font-size: 1.05rem;
                margin-bottom: 18px;
            }
            
            .hero-description {
                font-size: 0.95rem;
                margin-bottom: 22px;
            }
            
            .cta-button {
                padding: 11px 30px;
                font-size: 0.95rem;
            }
            
            .terms-content {
                padding: 25px 20px;
                border-radius: 10px;
            }
            
            .section-title {
                font-size: 1.4rem;
            }
            
            .highlight-box {
                padding: 20px 25px;
                margin: 25px 0;
            }
            
            .contact-box {
                padding: 25px 20px;
            }
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #8b0000;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: #9a0202;
            transform: translateY(-3px);
        }