/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 100px 0 80px;
    color: white;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Styles */
.content-section {
    padding: 80px 0;
}

.content-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.content-card h2 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.content-card h3 {
    color: var(--dark-color);
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.content-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 15px;
}

.content-card ul {
    color: #64748b;
    line-height: 1.7;
}

.content-card li {
    margin-bottom: 8px;
}

.highlight-box {
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
}

.warning-box {
    background: linear-gradient(45deg, rgba(239, 68, 68, 0.1), rgba(245, 101, 101, 0.1));
    border-left: 4px solid #ef4444;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
}

.contact-info {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
}

.last-updated {
    color: #64748b;
    font-style: italic;
    margin-bottom: 30px;
    text-align: center;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}
