/**
 * Styles for CE Declaration page
 */

.page-content {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h1 {
    margin-bottom: 15px;
    color: var(--primary-black);
    font-size: 2.2rem;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 30px;
    color: #666;
    line-height: 1.6;
}

.ce-documents {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ce-document {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ce-document:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ce-document h2 {
    color: var(--primary-red);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.ce-document p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-red);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #c62828;
}

@media (max-width: 768px) {
    .ce-documents {
        grid-template-columns: 1fr;
    }
    
    .section-title h1 {
        font-size: 1.8rem;
    }
    
    .ce-document h2 {
        font-size: 1.2rem;
    }
}
