/* Terms and Conditions Styles */
.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    font-family: "Montserrat", sans-serif;
}

.breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    text-decoration: none;
    color: #666;
    margin-right: 8px;
    height: 18px;
    width: 18px;
}

.breadcrumb span {
    margin: 0 8px;
}

.home-icon::before {
    content: "🏠";
    font-size: 16px;
}

.terms-title {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
    text-align: left;
}

.terms-description {
    margin-bottom: 40px;
    line-height: 1.6;
}

.terms-description p {
    margin-bottom: 20px;
    color: #333;
    font-size: 16px;
}

.terms-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.terms-sidebar {
    flex: 1;
    max-width: 300px;
}

.terms-main {
    flex: 1;
    min-width: 400px;
}



.terms-box {
    background: #fff;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 14px;
    padding: 30px;
}

.menu-item {
    padding: 3px 16px;
    margin-bottom: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #333;
    border-left: 3px solid transparent;
    font-weight: 500;
}

.menu-item:hover {
    color: rgb(137, 214, 40);
}


.terms-detail {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.terms-detail h3 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.terms-detail h4 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin: 25px 0 15px 0;
}

.terms-detail p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
    font-size: 13px;
}

.terms-detail ul {
    margin: 15px 0;
    padding-left: 20px;
}

.terms-detail li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
    font-size: 13px;
}



/* Responsive Design */
@media (max-width: 809px) {
    ol {
        padding-left: 20px;
    }
    .terms-layout {
        flex-direction: column;
        gap: 20px;
    }
    .terms-detail {
        padding-top: 0px;
        margin-top: 0px;
        border-top: none;
    }
    .terms-sidebar {
        min-width: unset;
        width: 100%;
    }
    .menu-item {
        padding: 3px 0px;
    }
    .terms-main {
        min-width: unset;
        width: 100%;
    }
    
    .terms-title {
        font-size: 28px;
    }
    
    .terms-container {
        padding: 15px;
    }
    
    .terms-box {
        padding: 20px 10px;
    }
    
    .terms-menu {
        padding: 15px;
    }
}
@media (min-width: 810px) {
    .terms-menu {
        padding-top: 20px;
    }
    .terms-container *, .terms-description p {
        font-size: 13px;
    }
    .terms-container {
        padding-left: 60px;
        padding-right: 60px;
    }
    .terms-title{
        font-size: 42px;
    }
}
@media (max-width: 480px) {
    .terms-title {
        font-size: 24px;
    }
    
    .terms-description p {
        font-size: 14px;
    }
    
    .menu-item {
        padding: 3px 0px;
        font-size: 13px;
    }
    
    .terms-detail h3 {
        font-size: 20px;
    }
    
    .terms-detail h4 {
        font-size: 16px;
    }
    
    .terms-detail p,
    .terms-detail li {
        font-size: 14px;
    }
}

/* Interactive Effects */
.menu-item {
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(129, 79, 255, 0.1), transparent);
    transition: left 0.5s;
}

.menu-item:hover::before {
    left: 100%;
}

.terms-box {
    position: relative;
    overflow: hidden;
}


@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Modern Table Styles for Policies/Terms comparison tables */
.terms-detail table {
    width: 100% !important;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 14px;
    line-height: 1.5;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 1px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
}
.terms-detail th,
.terms-detail td {
    padding: 14px 18px;
    border: 1px solid #eaeaea;
    text-align: left;
    vertical-align: middle;
}
.terms-detail th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
    border-bottom: 2px solid #eaeaea;
}
.terms-detail tr:nth-child(even) {
    background-color: #fafafa;
}
.terms-detail tr:hover {
    background-color: #f5f6f8;
}
.terms-detail table p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
}


