/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* Disclaimer Banner */
.disclaimer-banner {
    background-color: #dc3545;
    color: white;
    padding: 12px 0;
    font-size: 0.9rem;
}

.disclaimer-banner p {
    margin: 0;
}

.disclaimer-banner i {
    margin-right: 5px;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
}

.navbar-brand i {
    margin-right: 8px;
}

.nav-link {
    font-weight: 400;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #f0f0f0 !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 110, 253, 0.85);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.hero-buttons .btn {
    margin: 5px;
    padding: 12px 30px;
    font-weight: 500;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #0d6efd;
    border-radius: 2px;
}

/* News Cards */
.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}

.news-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    gap: 15px;
    color: #777;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.news-meta i {
    margin-right: 5px;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.news-excerpt {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.news-content .btn {
    align-self: flex-start;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stat-box {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1rem;
}

/* Blog Preview Cards */
.blog-preview-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-preview-card:hover {
    transform: translateY(-5px);
}

.blog-preview-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-preview-content {
    padding: 20px;
}

.blog-date {
    color: #777;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.blog-preview-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.blog-preview-content p {
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0a58ca;
}

.read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.read-more:hover i {
    margin-left: 10px;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

/* Footer */
.footer {
    background: #212529;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #495057;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #0d6efd;
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 20px 0;
    z-index: 1050;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner a {
    color: white;
}

/* About Page Styles */
.page-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

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

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 5px solid #f8f9fa;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-member .position {
    color: #0d6efd;
    font-weight: 500;
    margin-bottom: 10px;
}

.team-member p {
    color: #666;
    font-size: 0.95rem;
}

/* Resources Page */
.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3.5rem;
    color: #0d6efd;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

/* Contact Page */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.contact-item {
    display: flex;
    align-items: start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #0d6efd;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item-content h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-item-content p {
    color: #666;
    margin: 0;
}

/* Blog Article Page */
.article-header {
    margin-bottom: 40px;
}

.article-meta {
    display: flex;
    gap: 20px;
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.article-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.article-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-content h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content blockquote {
    background: #f8f9fa;
    border-left: 5px solid #0d6efd;
    padding: 20px 30px;
    margin: 30px 0;
    font-style: italic;
}

.article-content ul, .article-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.tag {
    background: #e9ecef;
    padding: 5px 15px;
    border-radius: 20px;
    color: #495057;
    text-decoration: none;
    font-size: 0.9rem;
}

.tag:hover {
    background: #0d6efd;
    color: white;
}

/* FAQ Page */
.faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.faq-item h4 {
    color: #0d6efd;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    margin: 0;
}

/* Privacy and Terms Pages */
.legal-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content p, .legal-content li {
    color: #555;
    line-height: 1.8;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section {
        min-height: 400px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .news-title {
        font-size: 1.1rem;
    }
    
    .cookie-banner .btn {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    .disclaimer-banner {
        font-size: 0.8rem;
        padding: 10px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-form, .contact-info {
        padding: 25px;
    }
}