/* Footer Links */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 15px 0;
    width: 100%;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 5px 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e63946;
    text-decoration: underline;
}

/* Page Content Styles */
.page-content {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    color: #2b2d42;
    text-align: center;
    margin-bottom: 40px;
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.content-block h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2b2d42;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-block h2:first-child {
    margin-top: 0;
}

.content-block h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2b2d42;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-block p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.content-block ul, .content-block ol {
    margin-bottom: 20px;
    margin-left: 20px;
}

.content-block li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #555;
}

.content-block strong {
    font-weight: 600;
    color: #2b2d42;
}

@media (max-width: 768px) {
    .page-content {
        padding: 60px 0;
    }
    
    .page-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .content-block {
        padding: 25px;
        margin: 0 15px;
    }
    
    .content-block h2 {
        font-size: 22px;
    }
    
    .content-block h3 {
        font-size: 18px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links a {
        margin: 5px 0;
    }
}