/* Terms of Service Page Styles */
.terms-page {
    background: #f8fafc;
    padding-bottom: 4rem;
}

.terms-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 0;
    color: white;
    margin-bottom: 3rem;
}

.terms-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.last-updated {
    opacity: 0.9;
    font-size: 0.875rem;
}

.terms-content {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.terms-section p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.terms-section ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.terms-section ul li {
    color: #475569;
    margin-bottom: 0.5rem;
    position: relative;
}

.terms-section ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: -1.5rem;
    font-weight: bold;
}

.contact-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}
.contact-button-wrapper {
    margin-top: 1.5rem;
    text-align: center;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-contact:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

.btn-contact i {
    width: 1.25rem;
    height: 1.25rem;
}
@media (max-width: 768px) {
    .terms-hero {
        padding: 3rem 1rem;
    }

    .terms-hero h1 {
        font-size: 2rem;
    }

    .terms-content {
        padding: 1.5rem;
    }

    .terms-section h2 {
        font-size: 1.5rem;
    }
}