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

:root {
    --primary-blue: #0066CC;
    --accent-green: #99CC33;
    --light-blue: #E6F2FF;
    --dark-text: #333333;
    --light-gray: #F5F5F5;
    --border-color: #DDDDDD;
    --white: #FFFFFF;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--light-gray);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    color: var(--white);
    margin-right: 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-green);
}

.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    position: relative;
}

.lang-btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.3);
}

.login-btn {
    color: var(--white);
    text-decoration: none;
    padding: 5px 15px;
    border: 1px solid var(--white);
    border-radius: 4px;
    transition: all 0.3s;
}

.login-btn:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.header-main {
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo img {
    max-height: 120px;
    width: auto;
}

.header-ad {
    flex: 1;
    max-width: 728px;
}

.main-nav {
    background: linear-gradient(135deg, #0066CC 0%, #004C99 100%);
    border-top: 4px solid var(--accent-green);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: relative;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    padding: 0;
    margin: 0;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    padding: 16px 24px;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid transparent;
    position: relative;
    background: rgba(255,255,255,0.05);
}

.nav-menu li a:hover {
    background: linear-gradient(135deg, var(--accent-green) 0%, #8BC34A 100%);
    color: #1a1a1a;
    border-bottom-color: #689F38;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.nav-menu li a.active {
    background: var(--accent-green);
    color: #1a1a1a;
    border-bottom-color: #689F38;
    font-weight: 800;
}

.nav-menu li a i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.nav-menu li a:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Hero Section */
.hero {
    background: var(--dark-text);
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 400px;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 100%;
    padding: 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 24px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Main Content Layout */
.main-content {
    padding: 30px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    gap: 20px;
}

/* Sidebar Styles */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.widget {
    background: var(--white);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.widget-title {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-green);
    color: var(--primary-blue);
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--light-blue);
    border-radius: 6px;
    text-decoration: none;
    color: var(--dark-text);
    transition: all 0.3s;
    border-left: 3px solid var(--primary-blue);
}

.quick-link:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateX(5px);
}

.quick-link i {
    font-size: 20px;
    color: var(--primary-blue);
}

.quick-link:hover i {
    color: var(--white);
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-left: 3px solid var(--accent-green);
    background: var(--light-gray);
    border-radius: 4px;
    font-size: 14px;
}

.trending-item i {
    color: #FF6B35;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Advertisement Placeholders */
.ad-placeholder {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-label {
    color: #999;
    font-size: 14px;
    font-weight: bold;
}

.ad-section {
    margin: 30px 0;
}

/* Content Sections */
.content-section {
    background: var(--white);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-green);
}

.section-header h2 {
    color: var(--primary-blue);
    font-size: 24px;
}

.section-header h2 i {
    margin-right: 10px;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-green);
    color: var(--dark-text);
}

.btn-primary:hover {
    background: #88BB22;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Tabs */
.news-tabs,
.contacts-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.tab-btn:hover {
    background: var(--light-blue);
    border-color: var(--primary-blue);
}

.tab-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

/* Article Cards */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.article-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

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

.article-content {
    padding: 15px;
}

.category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 12px;
    font-size: 12px;
    margin-bottom: 10px;
}

.article-content h3 {
    margin-bottom: 10px;
    color: var(--dark-text);
    font-size: 18px;
}

.article-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.article-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: linear-gradient(135deg, var(--light-blue), var(--white));
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-card h3 {
    color: var(--dark-text);
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.service-card .price {
    display: block;
    color: var(--accent-green);
    font-weight: bold;
    margin-top: 10px;
}

/* Contact Cards */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 15px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.contact-icon.emergency {
    background: #FF4444;
}

.contact-icon.hospital {
    background: #4CAF50;
}

.contact-icon.police {
    background: #2196F3;
}

.contact-icon.government {
    background: #FF9800;
}

.contact-icon.utilities {
    background: #9C27B0;
}

.contact-info h4 {
    color: var(--dark-text);
    margin-bottom: 8px;
}

.contact-phone,
.contact-address,
.contact-description {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

.contact-phone i,
.contact-address i {
    color: var(--primary-blue);
    margin-right: 5px;
}

/* Events */
.events-grid {
    display: grid;
    gap: 20px;
}

.event-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s;
}

.event-card:hover {
    border-color: var(--accent-green);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.event-date {
    background: var(--primary-blue);
    color: var(--white);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.event-date .day {
    display: block;
    font-size: 32px;
    font-weight: bold;
}

.event-date .month {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
}

.event-content h3 {
    color: var(--dark-text);
    margin-bottom: 10px;
}

.event-content p {
    color: #666;
    font-size: 14px;
    margin: 5px 0;
}

/* Admin Panel */
.admin-panel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.admin-card {
    background: linear-gradient(135deg, var(--primary-blue), #0052A3);
    color: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

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

.admin-card i {
    font-size: 48px;
    margin-bottom: 15px;
}

.admin-card h3 {
    margin-bottom: 10px;
}

.admin-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
}

.newsletter-form button {
    width: 100%;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px;
    color: #999;
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: var(--accent-green);
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-green);
}

.footer-col .social-links {
    margin-top: 15px;
}

.footer-col .social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    transition: all 0.3s;
}

.footer-col .social-links a:hover {
    background: var(--accent-green);
    color: var(--dark-text);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--accent-green);
    text-decoration: none;
}

/* Modals */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
}

.modal-overlay.active {
    display: block;
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2001;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal.active {
    display: block;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid var(--accent-green);
}

.modal-header h3 {
    color: var(--primary-blue);
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--dark-text);
}

.modal form {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal form input,
.modal form select,
.modal form textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
}

.modal form textarea {
    min-height: 100px;
    resize: vertical;
}

.modal form button {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .left-sidebar,
    .right-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    
    .header-ad {
        display: none;
    }
    
    .nav-menu {
        flex-direction: column;
        overflow-x: auto;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        padding: 12px 15px;
        width: 100%;
    }
    
    .hero-slide {
        height: 250px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .left-sidebar,
    .right-sidebar {
        display: none;
    }
    
    .articles-grid,
    .services-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-col .social-links {
        justify-content: flex-start;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .social-links {
        display: flex;
        justify-content: center;
    }
    
    .top-right {
        justify-content: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}



/* Advertisement Slider */
.ad-slider {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
}

.ad-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.ad-slide.active {
    opacity: 1;
    z-index: 1;
}

.ad-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.ad-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .ad-slider {
        height: 80px;
    }
    
    .ad-slide img {
        max-height: 60px;
    }
}


/* ========================================
   CHATBOT STYLES
   ======================================== */

.chatbot-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    transition: all 0.3s ease;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.6);
}

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FF6B6B;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 380px;
    height: 550px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transform: scale(0);
    transform-origin: bottom right;
    opacity: 0;
    transition: all 0.3s ease;
}

.chatbot-container.open {
    transform: scale(1);
    opacity: 1;
}

.chatbot-header {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    padding: 5px;
}

.chatbot-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chatbot-status {
    font-size: 12px;
    opacity: 0.9;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

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

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
}

.chatbot-message {
    display: flex;
    margin-bottom: 15px;
    animation: slideIn 0.3s ease;
}

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

.bot-message {
    justify-content: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #0066cc;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.message-content {
    max-width: 70%;
}

.bot-message .message-content {
    background: white;
    padding: 12px 15px;
    border-radius: 0 15px 15px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.user-message .message-content {
    background: #0066cc;
    color: white;
    padding: 12px 15px;
    border-radius: 15px 0 15px 15px;
}

.message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-line;
}

.message-time {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 5px;
    display: block;
}

.chatbot-quick-replies {
    padding: 10px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    background: #f8f9fa;
}

.quick-reply-btn {
    background: white;
    border: 1px solid #0066cc;
    color: #0066cc;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-reply-btn:hover {
    background: #0066cc;
    color: white;
}

.chatbot-input-area {
    display: flex;
    padding: 15px 20px;
    background: white;
    border-radius: 0 0 15px 15px;
    border-top: 1px solid #e0e0e0;
}

.chatbot-input-area input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
}

.chatbot-input-area input:focus {
    border-color: #0066cc;
}

.chatbot-input-area button {
    background: #0066cc;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.chatbot-input-area button:hover {
    background: #004999;
}

@media (max-width: 768px) {
    .chatbot-container {
        width: calc(100% - 40px);
        height: calc(100% - 40px);
        bottom: 20px;
        right: 20px;
    }
    
    .chatbot-toggle {
        bottom: 15px;
        right: 15px;
    }
}
