.main-terms{
    margin: 0;
    padding: 0;
}

/* Terms & Policies Hero Section */
.terms-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.terms-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #9945FF;
}

.breadcrumb-separator {
    color: #999;
    font-weight: 500;
}

.breadcrumb-current {
    color: #333;
    font-weight: 500;
}

.terms-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.terms-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1D1616;
    margin-bottom: 20px;
    line-height: 1.1;
}

.terms-hero-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

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

@media (max-width: 768px) {
    .terms-hero-section {
        padding: 60px 0 80px 0;
    }
    
    .terms-hero-container {
        padding: 0 15px;
    }
    
    .breadcrumb {
        margin-bottom: 30px;
        font-size: 0.85rem;
    }
    
    .terms-hero-title {
        font-size: 2.5rem;
    }
    
    .terms-hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .terms-hero-section {
        padding: 50px 0 70px 0;
    }
    
    .terms-hero-title {
        font-size: 2rem;
    }
    
    .terms-hero-description {
        font-size: 0.95rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
        margin-bottom: 25px;
    }
}

/* Terms & Policies Content Section */
.terms-content-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.terms-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-content-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.terms-content-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1D1616;
    margin-bottom: 40px;
    text-align: left;
}

.terms-sections {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.terms-section {
    border-bottom: 1px solid #e9ecef;
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.terms-section-header:hover {
    background-color: #f8f9fa;
}

.terms-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1D1616;
    margin: 0;
}

.terms-section-arrow {
    font-size: 1.2rem;
    color: #9945FF;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.terms-section.active .terms-section-arrow {
    transform: rotate(180deg);
}

.terms-section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.terms-section.active .terms-section-content {
    max-height: 500px;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-bottom: 20px;
}

.terms-list li {
    margin-bottom: 15px;
}

.terms-list li:last-child {
    margin-bottom: 0;
}

.terms-link {
    color: #9945FF;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 8px 0;
}

.terms-link:hover {
    color: #7B2CBF;
    text-decoration: underline;
}

/* Responsive Design for Content Section */
@media (max-width: 768px) {
    .terms-content-section {
        padding: 60px 0;
    }
    
    .terms-content-card {
        padding: 40px 20px;
    }
    
    .terms-content-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .terms-section-header {
        padding: 20px 0;
    }
    
    .terms-section-title {
        font-size: 1.3rem;
    }
    
    .terms-link {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .terms-content-card {
        padding: 30px 15px;
    }
    
    .terms-content-title {
        font-size: 1.6rem;
    }
    
    .terms-section-header {
        padding: 18px 0;
    }
    
    .terms-section-title {
        font-size: 1.2rem;
    }
    
    .terms-link {
        font-size: 0.9rem;
    }
}

/* Contact Our Legal Team Section */
.legal-contact-section {
    background-color: #f8f9fa;
    padding: 0px 0;
    position: relative;
}

.legal-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-contact-card {
    background: white;
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.legal-contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-contact-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.legal-contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1D1616;
    margin: 0;
    line-height: 1.2;
}

.legal-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.legal-contact-item {
    text-align: left;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.legal-contact-item:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.legal-contact-icon {
    width: 50px;
    height: 50px;
    background: #e9ecef;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #666;
    transition: all 0.3s ease;
}

.legal-contact-item:hover .legal-contact-icon {
    background: #9945FF;
    color: white;
}

.legal-contact-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1D1616;
    margin-bottom: 15px;
    line-height: 1.3;
}

.legal-contact-item-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.legal-contact-link {
    color: #9945FF;
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
}

.legal-contact-link:hover {
    color: #7B2CBF;
}

/* Responsive Design for Legal Contact Section */
@media (max-width: 1024px) {
    .legal-contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .legal-contact-item {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .legal-contact-section {
        padding: 60px 0;
    }
    
    .legal-contact-card {
        padding: 40px 30px;
    }
    
    .legal-contact-header {
        margin-bottom: 40px;
    }
    
    .legal-contact-title {
        font-size: 2rem;
    }
    
    .legal-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .legal-contact-item {
        padding: 25px;
    }
    
    .legal-contact-item-title {
        font-size: 1.2rem;
    }
    
    .legal-contact-item-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .legal-contact-card {
        padding: 30px 20px;
    }
    
    .legal-contact-title {
        font-size: 1.8rem;
    }
    
    .legal-contact-item {
        padding: 20px;
    }
    
    .legal-contact-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }
    
    .legal-contact-item-title {
        font-size: 1.1rem;
    }
    
    .legal-contact-item-description {
        font-size: 0.9rem;
    }
}

/* Legal FAQ Section */
.faq-section {
    background-color: #f8f9fa;
    padding: 0;
    margin: 50px 0;
    position: relative;
}

.faq-container {
    max-width: 1150px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px 100px;
    border-radius: 50px;
}

.legal-faq-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.legal-faq-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1D1616;
    margin-bottom: 40px;
    text-align: left;
}

.legal-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.legal-faq-item {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.legal-faq-item:last-child {
    border-bottom: none;
}

.legal-faq-item:hover {
    background-color: #f8f9fa;
}

.legal-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1D1616;
}

.legal-faq-question:hover {
    color: #9945FF;
}

.legal-faq-arrow {
    font-size: 1.2rem;
    color: #9945FF;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.legal-faq-item.active .legal-faq-arrow {
    transform: rotate(180deg);
}

.legal-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f8f9fa;
}

.legal-faq-item.active .legal-faq-answer {
    max-height: 300px;
}

.legal-faq-answer p {
    padding: 20px 25px;
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design for Legal FAQ */
@media (max-width: 768px) {
    .legal-faq-section {
        padding: 60px 0;
    }
    
    .legal-faq-card {
        padding: 40px 20px;
    }
    
    .legal-faq-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .legal-faq-question {
        padding: 20px 0;
        font-size: 1rem;
    }
    
    .legal-faq-arrow {
        font-size: 1.1rem;
        margin-left: 15px;
    }
    
    .legal-faq-answer p {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .legal-faq-card {
        padding: 30px 15px;
    }
    
    .legal-faq-title {
        font-size: 1.6rem;
    }
    
    .legal-faq-question {
        padding: 18px 0;
        font-size: 0.95rem;
    }
    
    .legal-faq-arrow {
        font-size: 1rem;
        margin-left: 10px;
    }
    
    .legal-faq-answer p {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}


[data-scroll-container]::after {
    content: "";
    display: block;
    height: 0px; /* adjust (5vh–20vh) depending on how much footer gets cut */
  }