
    /* Terms and Conditions Section Styling */
    .terms-section {
        padding: 100px 20px;
        background: #E0E0E0; /* Explicitly set to #E0E0E0 */
        
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.5s ease;
    }

    .container {
        max-width: 1200px;
        
        padding: 0 20px;
    }

    .terms-title {
        font-size: 2.8rem;
        font-weight: 600;
        color: var(--first-color);
      
        letter-spacing: 1.5px;
        margin-bottom: 20px;
        text-align: center;
        transition: color 0.4s ease;
    }

    .terms-title:hover {
        color: var(--first-color-alt);
    }

    .terms-subtitle {
        font-size: 1.25rem;
        color: var(--first-color);
        font-weight: 400;
        margin-bottom: 60px;
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        line-height: 1.6;
    }

    .terms-content {
        max-width: 950px;
        margin: 0 auto;
        text-align: left;
    }

    .terms-item {
        margin-bottom: 30px;
        background: var(--white-color);
        border-radius: 16px;
        padding: 25px 30px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease;
    }

    .terms-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .terms-heading {
        font-size: 1.6rem;
        font-weight: 500;
        color: var(--first-color);
        margin-bottom: 15px;
        transition: color 0.4s ease;
    }

    .terms-item:hover .terms-heading {
        color: var(--first-color-alt);
    }

    .terms-text {
        font-size: 1rem;
        color: var(--black);
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .terms-list {
        list-style-type: disc;
        padding-left: 25px;
        color: var(--black);
    }

    .terms-list li {
        margin-bottom: 12px;
        font-size: 1rem;
        line-height: 1.7;
        transition: transform 0.4s ease;
    }

    .terms-item:hover .terms-list li {
        transform: translateX(5px);
    }

    .terms-text a,
    .terms-list a {
        color: var(--first-color);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .terms-text a:hover,
    .terms-list a:hover {
        color: var(--first-color-alt);
        
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .terms-title {
            font-size: 2.4rem;
        }

        .terms-subtitle {
            font-size: 1.1rem;
        }

        .terms-heading {
            font-size: 1.4rem;
        }

        .terms-text,
        .terms-list li {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 768px) {
        .terms-section {
            padding: 80px 15px;
        }

        .terms-title {
            font-size: 2rem;
        }

        .terms-subtitle {
            font-size: 1rem;
            margin-bottom: 40px;
        }

        .terms-heading {
            font-size: 1.3rem;
        }

        .terms-text,
        .terms-list li {
            font-size: 0.9rem;
        }

        .terms-item {
            padding: 20px 25px;
        }
    }

    @media (max-width: 480px) {
        .terms-section {
            padding: 60px 10px;
        }

        .terms-title {
            font-size: 1.8rem;
        }

        .terms-subtitle {
            font-size: 0.9rem;
            margin-bottom: 30px;
        }

        .terms-heading {
            font-size: 1.2rem;
        }

        .terms-text,
        .terms-list li {
            font-size: 0.85rem;
        }

        .terms-item {
            padding: 15px 20px;
        }

        .terms-list {
            padding-left: 20px;
        }
    }
