.terms-page {
    padding: 40px 0 60px;
    background-color: #f8f9fa;
    min-height: 60vh;
}

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

/* Page Header */
.page-header {
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: #999;
}

.breadcrumb-item a {
    color: #15803D;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #666;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #e8f5e9;
    border-radius: 30px;
    color: #15803D;
    font-size: 14px;
}

.last-updated svg {
    stroke: #15803D;
}

/* Terms Content */
.terms-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

/* Terms Sections */
.terms-section {
    margin-bottom: 30px;
}

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

.section-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}

.section-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.section-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(21, 128, 61, 0.1);
}

.section-content {
    flex: 1;
}

.section-content h2 {
    font-size: 1.5rem;
    color: #333;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.section-content h3 {
    font-size: 1.2rem;
    color: #444;
    margin: 20px 0 10px 0;
    font-weight: 500;
}

.section-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Definitions List */
.definitions-list {
    margin: 0;
}

.definitions-list dt {
    font-weight: 600;
    color: #15803D;
    margin-top: 15px;
}

.definitions-list dt:first-child {
    margin-top: 0;
}

.definitions-list dd {
    color: #555;
    line-height: 1.6;
    margin: 5px 0 0 20px;
}

/* Styled Lists */
.styled-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.styled-list li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.styled-list li::before {
    content: "•";
    color: #15803D;
    font-weight: bold;
    position: absolute;
    left: 8px;
}

/* Notice Box */
.notice-box {
    background-color: #fff3e0;
    border-left: 4px solid #EA580C;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.notice-box h4 {
    color: #EA580C;
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.notice-box p {
    margin: 0;
    color: #555;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-item-terms {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
}

.contact-item-terms strong {
    display: block;
    color: #15803D;
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item-terms p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.contact-item-terms a {
    color: #15803D;
    text-decoration: none;
}

.contact-item-terms a:hover {
    text-decoration: underline;
}

/* Acknowledgement Section */
.acknowledgement {
    margin-top: 40px;
}

.acknowledgement-box {
    background: linear-gradient(135deg, #15803D 0%, #0f6b2f 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.acknowledgement-box svg {
    stroke: white;
}

.acknowledgement-box h3 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .terms-content {
        padding: 20px;
    }
    
    .section-card {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-icon {
        width: 40px;
        height: 40px;
    }
    
    .section-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .section-content h2 {
        font-size: 1.3rem;
    }
    
    .section-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.75rem;
    }
    
    .terms-content {
        padding: 15px;
    }
    
    .section-card {
        padding: 15px;
    }
}