/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5aa0;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2c5aa0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: white;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.hero-image i {
    font-size: 12rem;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c5aa0;
    transform: translateY(-2px);
}

/* Featured Laws Section */
.featured-laws {
    padding: 80px 0;
    background: white;
}

.featured-laws h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.laws-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.law-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.law-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(44,90,160,0.15);
    border-color: #2c5aa0;
    background: #ffffff;
}

.law-card.active {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(44,90,160,0.25);
    border-color: #2c5aa0;
    background: #ffffff;
}

.law-card i {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.law-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.law-card p {
    color: #666;
}

/* Tools Section */
.tools {
    padding: 80px 0;
    background: #f8f9fa;
}

.tools h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.tool-section {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.tool-header h3 {
    color: #2c5aa0;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tool-header p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.tool-intro {
    background: #e3f2fd;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.tool-intro h4 {
    color: #1976d2;
    margin-bottom: 1rem;
}

/* Assessment Form */
.assessment-form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.question-group {
    margin-bottom: 2rem;
}

.question {
    display: block;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.radio-group {
    display: flex;
    gap: 2rem;
}

.radio-group input[type="radio"] {
    margin-right: 0.5rem;
}

.radio-group label {
    font-weight: normal;
    cursor: pointer;
}

/* Result Section */
.result-section {
    background: #e8f5e8;
    border: 2px solid #4caf50;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
}

.result-section h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

.compliance-level {
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    font-weight: 600;
}

.high-compliance {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.medium-compliance {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.low-compliance {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Checklist Section */
.checklist-section {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin-top: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.checklist-section h3 {
    color: #2c5aa0;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.checklist {
    margin-bottom: 2rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: #e3f2fd;
}

.checklist-item input[type="checkbox"] {
    margin-right: 1rem;
    transform: scale(1.2);
}

.checklist-item label {
    cursor: pointer;
    font-weight: 500;
}

.checklist-item.completed {
    background: #e8f5e8;
    color: #2e7d32;
}

.checklist-item.completed label {
    text-decoration: line-through;
}

/* Progress Bar */
.progress-bar {
    background: #e0e0e0;
    border-radius: 25px;
    height: 30px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, #4caf50, #8bc34a);
    height: 100%;
    border-radius: 25px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    color: #333;
}

/* Resources Section */
.resources {
    padding: 80px 0;
    background: white;
}

.resources h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.resource-card.active {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(44,90,160,0.3);
    border: 2px solid #2c5aa0;
}

.resource-card i {
    font-size: 3.5rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.resource-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.resource-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.resource-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #ff6b35;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #333;
}

.contact-method i {
    color: #2c5aa0;
    width: 20px;
    margin-right: 1rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background: #2c5aa0;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-image i {
        font-size: 8rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .laws-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .tool-section,
    .checklist-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Resource Content Areas */
.resource-content-container {
    margin-top: 3rem;
}

.resource-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    animation: slideDown 0.3s ease-out;
}

.content-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a7bc8 100%);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-header h3 {
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.close-content {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.close-content:hover {
    background-color: rgba(255,255,255,0.2);
}

.content-body {
    padding: 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.content-section h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid #e8f2ff;
    padding-bottom: 0.5rem;
}

/* Document Lists */
.document-list {
    list-style: none;
    padding: 0;
}

.document-list li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.document-list li:hover {
    background-color: #f8f9fa;
    padding-left: 1rem;
}

.document-list li i {
    color: #2c5aa0;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.document-list li:last-child {
    border-bottom: none;
}

/* Training Lists */
.training-list {
    list-style: none;
    padding: 0;
}

.training-list li {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.training-list li i {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.training-list li div {
    flex: 1;
}

.training-list li strong {
    display: block;
    color: #333;
    margin-bottom: 0.25rem;
}

.training-list li span {
    color: #666;
    font-size: 0.9rem;
}

.training-list li:last-child {
    border-bottom: none;
}

/* Expert Cards */
.expert-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.expert-info strong {
    display: block;
    color: #2c5aa0;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.expert-info > span {
    display: block;
    color: #666;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.expert-info p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.expert-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.specialty {
    background: #e8f2ff;
    color: #2c5aa0;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Consultation Rates */
.consultation-rates {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
}

.consultation-rates h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.rate-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #2c5aa0;
}

.rate-item strong {
    display: block;
    color: #333;
    margin-bottom: 0.5rem;
}

.rate-item span {
    color: #2c5aa0;
    font-weight: 600;
}

/* Subscription Plans */
.subscription-options {
    margin-bottom: 3rem;
}

.subscription-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.subscription-plan {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.subscription-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.subscription-plan.premium {
    background: linear-gradient(135deg, #e8f2ff 0%, #f0f7ff 100%);
    border-color: #2c5aa0;
}

.subscription-plan h5 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.subscription-plan ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.subscription-plan ul li {
    padding: 0.5rem 0;
    color: #555;
}

.subscription-plan ul li:before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
    margin-right: 0.5rem;
}

.subscription-plan .price {
    display: block;
    color: #2c5aa0;
    font-weight: bold;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

/* Updates List */
.updates-list {
    margin-top: 1.5rem;
}

.update-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.update-item:last-child {
    border-bottom: none;
}

.update-date {
    background: #2c5aa0;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    height: fit-content;
    white-space: nowrap;
}

.update-content {
    flex: 1;
}

.update-content h5 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.update-content p {
    color: #666;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.update-category {
    background: #e8f2ff;
    color: #2c5aa0;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.content-footer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 2rem;
    color: #856404;
}

.consultation-intro {
    background: #e8f2ff;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.consultation-intro p {
    margin: 0;
    color: #2c5aa0;
    font-size: 1.1rem;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content-body {
        padding: 1.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-header {
        padding: 1rem 1.5rem;
    }
    
    .content-header h3 {
        font-size: 1.2rem;
    }
    
    .update-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .subscription-grid {
        grid-template-columns: 1fr;
    }
    
    .rates-grid {
        grid-template-columns: 1fr;
    }
    
    .expert-specialties {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .content-body {
        padding: 1rem;
    }
    
    .content-header {
        padding: 1rem;
    }
    
    .content-header h3 {
        font-size: 1.1rem;
    }
    
    .close-content {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
} 

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
    position: relative;
}

.modal-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a7bc8 100%);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #1e4080;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-header i {
    font-size: 2rem;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    line-height: 1;
}

.close-modal:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 2.5rem;
    overflow-y: auto;
    max-height: calc(90vh - 120px);
}

.modal-body h3 {
    color: #2c5aa0;
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
    border-bottom: 2px solid #e8f2ff;
    padding-bottom: 0.5rem;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333;
}

.modal-body strong {
    color: #2c5aa0;
    font-weight: 600;
}

.modal-body ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #555;
}

.last-updated {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

.disclaimer-footer {
    background: #fff3cd;
    border: 2px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
    color: #856404;
}

.disclaimer-footer strong {
    color: #856404;
    font-size: 1.1rem;
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Responsive Design */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
    }
    
    .modal-content {
        max-height: 95vh;
        border-radius: 10px;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .modal-header i {
        font-size: 1.5rem;
    }
    
    .close-modal {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    .modal-body {
        padding: 1.5rem;
        max-height: calc(95vh - 100px);
    }
    
    .modal-body h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 5px;
    }
    
    .modal-header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .close-modal {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-body ul {
        padding-left: 1.5rem;
    }
    
    .disclaimer-footer {
        padding: 1rem;
    }
} 