/* Tax Law Resources Page Styles - Rule 304 Compliant */

/* Page Header */
.tax-law-page-header {
    background-color: #1a2d45;
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
    margin-top: 80px;
}

.tax-law-page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.tax-law-page-header p {
    font-size: 1rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Content */
.tax-law-content {
    padding: 3rem 0 5rem;
}

.tax-law-section {
    background-color: #f5f7fa;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.tax-law-section h2 {
    color: #1a2d45;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
}

.tax-law-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Resource Buttons */
.tax-law-resource-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
}

.tax-law-resource-button {
    padding: 1rem 1.5rem;
    background-color: #1a2d45;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.tax-law-resource-button:hover {
    background-color: #7b4016;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}

/* Call to Action */
.tax-law-cta {
    background-color: #1a2d45;
    color: white;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.tax-law-cta h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tax-law-cta p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
    font-size: 1rem;
}

.tax-law-cta .btn {
    background-color: #7b4016;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.tax-law-cta .btn:hover {
    background-color: #8d4a1d;
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tax-law-page-header h1 {
        font-size: 2rem;
    }
    
    .tax-law-section {
        padding: 2rem 1.5rem;
    }
    
    .tax-law-section h2 {
        font-size: 1.6rem;
    }
    
    .tax-law-resource-button {
        min-width: 160px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .tax-law-cta {
        padding: 2rem 1.5rem;
    }
    
    .tax-law-cta h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .tax-law-page-header {
        padding: 2rem 0;
    }
    
    .tax-law-content {
        padding: 2rem 0 3rem;
    }
    
    .tax-law-section {
        padding: 1.5rem 1rem;
    }
    
    .tax-law-section h2 {
        font-size: 1.5rem;
    }
    
    .tax-law-resource-buttons {
        gap: 0.8rem;
    }
    
    .tax-law-resource-button {
        min-width: 140px;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .tax-law-cta h3 {
        font-size: 1.3rem;
    }
}