/* Medical Rights Page Styles */
.page-header {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Rights Categories */
.category-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
}

.category-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.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 */
.details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rights-article {
    margin-bottom: 60px;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.rights-article h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.article-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.article-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.article-text li {
    color: #666;
    margin-bottom: 10px;
    padding-right: 20px;
    position: relative;
}

.article-text li:before {
    content: "•";
    color: #3498db;
    position: absolute;
    right: 0;
}

.article-image {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    margin-top: 60px;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-section h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #2980b9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .article-content {
        grid-template-columns: 1fr;
    }

    .article-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .rights-article {
        padding: 30px;
    }

    .rights-article h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .category-card {
        padding: 20px;
    }

    .category-card i {
        font-size: 2rem;
    }

    .category-card h3 {
        font-size: 1.2rem;
    }

    .rights-article {
        padding: 20px;
    }

    .article-image {
        height: 200px;
    }
} 