.disclaimer-page {
    padding: 4rem 0;
    background: #f8fafc;
}

.disclaimer-header {
    text-align: center;
    margin-bottom: 3rem;
}

.disclaimer-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #64748b;
    font-size: 0.875rem;
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.disclaimer-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.disclaimer-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.disclaimer-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.disclaimer-section p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.disclaimer-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.disclaimer-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #475569;
}

.disclaimer-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.contact-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    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) {
    .disclaimer-page {
        padding: 2rem 0;
    }

    .disclaimer-header h1 {
        font-size: 2rem;
    }

    .disclaimer-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .disclaimer-section {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
}