/* Civil Rights Page Styles */
.page-header {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Rights Categories */
.rights-categories {
    padding: 4rem 2rem;
}

.category-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.category-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.category-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.category-link {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #2980b9;
}

/* Rights Details */
.rights-details {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.details-container {
    max-width: 1200px;
    margin: 0 auto;
}

.rights-article {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.rights-article h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.article-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.article-text p {
    color: #666;
    margin-bottom: 1rem;
}

.article-text ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.article-text ul li {
    color: #666;
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
}

.article-text ul li:before {
    content: "•";
    color: #3498db;
    position: absolute;
    right: 0;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    padding: 4rem 2rem;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #666;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .rights-categories,
    .rights-details {
        padding: 2rem 1rem;
    }

    .article-content {
        grid-template-columns: 1fr;
    }

    .article-image {
        order: -1;
    }

    .cta-section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .category-container {
        grid-template-columns: 1fr;
    }

    .rights-article {
        padding: 1.5rem;
    }

    .rights-article h2 {
        font-size: 1.5rem;
    }
} 