:root {
    --primary-blue: #0066cc;
    --secondary-blue: #0052a3;
    --light-blue: #e6f2ff;
    --dark-blue: #003d7a;
    --white: #ffffff;
    --light-grey: #f5f5f5;
    --grey: #cccccc;
    --dark-grey: #666666;
    --text-dark: #333333;
    --border-color: #e0e0e0;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-grey);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-blue);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Header */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 18px;
}

.main-nav {
    padding: 15px 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 0;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-blue);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

/* Floating Search Button */
.floating-search-btn {
    position: fixed;
    top: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 20%;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.floating-search-btn:hover {
    background: var(--secondary-blue);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.5);
}

.floating-search-box {
    position: fixed;
    top: 100px;
    right: 30px;
    width: 300px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
    animation: slideUp 0.3s ease;
}

.floating-search-box.active {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-search-box input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 10px;
    transition: border-color 0.3s ease;
}

.floating-search-box input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.floating-search-box .search-submit {
    width: calc(45% - 5px);
    padding: 10px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-right: 10px;
    transition: background 0.3s ease;
}

.floating-search-box .search-submit:hover {
    background: var(--secondary-blue);
}

.floating-search-box .close-search {
    width: calc(45% - 5px);
    padding: 10px;
    background: var(--dark-grey);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.floating-search-box .close-search:hover {
    background: #555;
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
    position: fixed;
    top: 160px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 20%;
    background: #25D366;
    color: var(--white);
    border: none;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.floating-whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp-btn i {
    font-size: 32px;
}

/* Search Results Modal */
.search-results-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-results-modal.active {
    display: flex;
}

.search-results-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.search-results-container {
    position: relative;
    background: var(--white);
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--light-grey);
}

.search-results-header h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 20px;
}

.close-search-results {
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-search-results:hover {
    background: var(--light-grey);
    color: var(--text-dark);
}

.search-results-content {
    padding: 25px;
    overflow-y: auto;
    max-height: calc(80vh - 80px);
}

.search-loading,
.search-no-results,
.search-error {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
    font-size: 16px;
}

.search-error {
    color: var(--danger-red);
}

.search-section {
    margin-bottom: 30px;
}

.search-section:last-child {
    margin-bottom: 0;
}

.search-section h4 {
    margin: 0 0 15px 0;
    color: var(--primary-blue);
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-grey);
}

.search-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    border-radius: 8px;
    background: var(--light-grey);
    transition: all 0.3s ease;
    text-decoration: none;
}

.search-item:hover {
    background: var(--primary-blue);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.search-item:hover * {
    color: var(--white) !important;
}

.search-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.search-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.search-item-content h5 {
    margin: 0;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.4;
}

.search-item-category {
    display: inline-block;
    padding: 4px 10px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 4px;
    font-size: 12px;
    width: fit-content;
}

.search-item:hover .search-item-category {
    background: var(--white);
    color: var(--primary-blue);
}

.search-item-desc {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .search-results-container {
        width: 95%;
        max-height: 90vh;
    }
    
    .search-results-header {
        padding: 15px 20px;
    }
    
    .search-results-content {
        padding: 20px;
    }
    
    .search-item {
        flex-direction: column;
    }
    
    .search-item-image {
        width: 100%;
        height: 150px;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 60px 0;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 204, 0.7);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-slider {
    position: relative;
    min-height: 200px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    transform: translateX(100%);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateX(0);
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-content .service-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.hero-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-slider-dots .dot.active {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.2);
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

/* Articles Grid */
.articles-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.article-card,
.news-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover,
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.2);
}

.article-image,
.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content,
.news-content {
    padding: 20px;
}

.article-category,
.news-category {
    display: inline-block;
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.article-title,
.news-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.article-meta,
.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--dark-grey);
}

/* Sidebar */
.sidebar {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-section {
    margin-bottom: 40px;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-title {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-blue);
}

.category-list {
    list-style: none;
}

.category-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--text-dark);
}

.category-list a:hover {
    color: var(--primary-blue);
}

.category-count {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 2px 10px;
    border-radius: 15px;
    font-size: 12px;
}

/* Recent News Slider */
.recent-news-slider {
    position: relative;
    overflow: hidden;
}

.news-slider-container {
    position: relative;
    min-height: 200px;
}

.news-slide-item {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.news-slide-item.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.news-slide-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-slide-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.news-slide-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-slide-category {
    display: inline-block;
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    width: fit-content;
}

.news-slide-title {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

.news-slide-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.news-slide-title a:hover {
    color: var(--primary-blue);
}

.news-slide-time {
    font-size: 12px;
    color: var(--dark-grey);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--grey);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-blue);
    width: 25px;
    border-radius: 5px;
}

.slider-dot:hover {
    background: var(--secondary-blue);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    transition: all 0.3s ease;
    z-index: 1;
}

.service-card-overlay {
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.service-card:hover::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.service-icon {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-description {
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Footer */
.site-footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--light-blue);
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* Loading Animation */
.loading {
    text-align: center;
    padding: 40px;
}

.loading::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid var(--light-blue);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* News Article Styling */
.news-body {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    word-wrap: break-word;
}

.news-body p {
    margin-bottom: 1.5em;
    text-align: justify;
}

.news-body h1,
.news-body h2,
.news-body h3,
.news-body h4,
.news-body h5,
.news-body h6 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

.news-body h1 {
    font-size: 2em;
}

.news-body h2 {
    font-size: 1.75em;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 0.3em;
}

.news-body h3 {
    font-size: 1.5em;
}

.news-body h4 {
    font-size: 1.25em;
}

.news-body h5 {
    font-size: 1.1em;
}

.news-body h6 {
    font-size: 1em;
}

.news-body ul,
.news-body ol {
    margin-bottom: 1.5em;
    padding-left: 2em;
}

.news-body ul li,
.news-body ol li {
    margin-bottom: 0.5em;
    line-height: 1.8;
}

.news-body ul {
    list-style-type: disc;
}

.news-body ol {
    list-style-type: decimal;
}

.news-body blockquote {
    margin: 1.5em 0;
    padding: 20px 30px;
    background: var(--light-blue);
    border-left: 5px solid var(--primary-blue);
    font-style: italic;
    color: var(--dark-blue);
}

.news-body blockquote p {
    margin-bottom: 0;
}

.news-body strong,
.news-body b {
    font-weight: 700;
    color: var(--text-dark);
}

.news-body em,
.news-body i {
    font-style: italic;
}

.news-body a {
    color: var(--primary-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.news-body a:hover {
    color: var(--secondary-blue);
}

.news-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5em auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-body code {
    background: var(--light-grey);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.news-body pre {
    background: var(--light-grey);
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    margin-bottom: 1.5em;
}

.news-body pre code {
    background: none;
    padding: 0;
}

.news-body hr {
    border: none;
    border-top: 2px solid var(--border-color);
    margin: 2em 0;
}

.news-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
    background: var(--white);
}

.news-body table th,
.news-body table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.news-body table th {
    background: var(--light-blue);
    font-weight: 600;
    color: var(--primary-blue);
}

.news-body table tr:nth-child(even) {
    background: var(--light-grey);
}

.news-body table tr:hover {
    background: var(--light-blue);
}

.news-category {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    color: var(--dark-grey);
    font-size: 14px;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* News Article Container */
.news-article {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.news-article h1 {
    font-size: 36px;
    margin: 20px 0;
    color: var(--text-dark);
    line-height: 1.3;
}

.news-article .news-meta {
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.news-featured-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-video-container {
    margin: 40px 0;
}

.news-video-container h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.share-section {
    margin: 40px 0;
    padding: 25px;
    background: var(--light-grey);
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
}

.share-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--text-dark);
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.comments-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.comments-section h3 {
    margin-bottom: 30px;
    font-size: 28px;
    color: var(--text-dark);
}

.comment-item {
    padding: 20px;
    background: var(--light-grey);
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.comment-item.pending {
    background: #fff3cd;
    border-left-color: #ffc107;
}

.comment-item:hover {
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
    transform: translateX(5px);
}

.comment-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.comment-author {
    font-weight: 600;
    color: var(--text-dark);
}

.comment-time {
    color: var(--dark-grey);
    font-size: 14px;
}

.comment-status {
    color: #856404;
    font-size: 13px;
    font-style: italic;
}

.comment-text {
    margin-top: 10px;
    line-height: 1.6;
    color: var(--text-dark);
}

.comment-form-wrapper {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.comment-form-wrapper h4 {
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.comment-form .form-group {
    margin-bottom: 20px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.comment-form textarea {
    resize: vertical;
    min-height: 100px;
}

.comments-list {
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .articles-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    /* News Article Responsive */
    .news-article {
        padding: 20px;
    }

    .news-article h1 {
        font-size: 28px;
    }

    .news-body {
        font-size: 16px;
    }

    .news-body h2 {
        font-size: 1.5em;
    }

    .news-body h3 {
        font-size: 1.3em;
    }

    .news-body blockquote {
        padding: 15px 20px;
        margin: 1em 0;
    }

    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .share-section {
        padding: 20px;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .comments-section h3 {
        font-size: 24px;
    }

    .comment-item {
        padding: 15px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}
