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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

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

.main-header.sticky {
    background-color: rgba(255,255,255,0.95);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.site-logo {
    max-height: 50px;
    width: auto;
}

.site-logo-text h1 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.nav-brand a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* Navigation Menu Container */
.nav-menu-container {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
}

.nav-menu li a:hover {
    color: #e67e22;
    background-color: #f8f9fa;
}

/* Dropdown Menu Style */
.nav-menu .dropdown:hover > .dropdown-content,
.nav-menu .dropdown:focus-within > .dropdown-content {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 4px;
    z-index: 1000;
    padding: 0.5rem 0;
}

.dropdown-content li {
    width: 100%;
}

.dropdown-content a {
    padding: 0.75rem 1.5rem;
    color: #333;
    display: block;
    width: 100%;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #e67e22;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow,
.dropdown:focus-within .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 30px;
    height: 30px;
    justify-content: space-between;
}

.hamburger {
    display: block;
    width: 100%;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Menu Activation Status */
.nav-toggle.active .hamburger:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Banner Styles - Layout Optimization */
.banner {
    position: relative;
    height: 80vh;
    margin-top: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.brand-logo img {
    max-width: 180px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.brand-description {
    font-size: 1.8rem;
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 2rem;
    line-height: 1.4;
}

/* Add banner overlay to enhance text readability */
.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

/* Brand Introduction - Switch to left-right layout */
.brand-introduction {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.intro-content h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    position: relative;
    font-weight: 700;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #e67e22;
    border-radius: 2px;
}

/* Left-Right Layout Grid */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.intro-text p {
    margin-bottom: 1.5rem;
}

/* Feature List */
.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.feature-icon {
    background: #e67e22;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-size: 0.8rem;
    font-weight: bold;
}

.feature-text {
    color: #2c3e50;
    font-weight: 500;
}

/* Button Group */
.intro-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Image area */
.intro-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.intro-image:hover .about-image {
    transform: scale(1.05);
}

.image-placeholder {
    position: relative;
    background: #e9ecef;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.image-placeholder .about-image {
    opacity: 0.7;
}

.placeholder-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #6c757d;
    font-weight: 500;
    text-align: center;
    background: rgba(255,255,255,0.9);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* CTA button style */
.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: #e67e22;
    color: white;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.cta-button.primary:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #2c3e50;
    border-color: #2c3e50;
}

.cta-button.secondary:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.2);
}

/* News Section - Layout Optimization */
.news-section {
    padding: 6rem 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    color: #2c3e50;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    position: relative;
    font-weight: 700;
}

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

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

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid #f0f0f0;
}

.news-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

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

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

.news-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
}

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

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

.news-content {
    padding: 2rem;
}

.news-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.4;
}

.news-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-content h3 a:hover {
    color: #e67e22;
}

.news-excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 0.9rem;
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

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

.read-more:hover {
    color: #d35400;
}

/* FAQ Section - Layout Optimization */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.faq-question {
    padding: 1.8rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 0;
    flex: 1;
    font-weight: 600;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e67e22;
    transition: transform 0.3s ease;
}

.faq-item.active .accordion-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.8rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    padding: 0 1.8rem 1.8rem;
    max-height: 500px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

/* Footer Styles - Layout Optimization */
.main-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 4rem 0 1.5rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #e67e22;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

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

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.footer-menu li a:hover {
    color: #e67e22;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.contact-details p {
    display: flex;
    align-items: flex-start;
}

.contact-details strong {
    min-width: 80px;
    color: #fff;
}

.map-container {
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-placeholder {
    height: 100%;
    background: #34495e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdc3c7;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1.1rem;
}

.map-placeholder:hover {
    background: #3d566e;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1.5rem;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu-container {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 0;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        z-index: 999;
    }

    .nav-menu-container.active {
        height: calc(100vh - 80px);
        padding-top: 2rem;
        visibility: visible;
        opacity: 1;
        overflow-y: auto;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        padding: 0 2rem;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu li a {
        padding: 1rem 0;
        width: 100%;
        justify-content: space-between;
    }

    /* Mobile Dropdown Menu */
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 1.5rem;
        background: #f8f9fa;
        width: 100%;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content li {
        border-bottom: 1px solid #e0e0e0;
    }

    .dropdown-content li:last-child {
        border-bottom: none;
    }

    .dropdown-content a {
        padding: 0.75rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .banner {
        height: 60vh;
        margin-top: 70px;
    }

    .brand-description {
        font-size: 1.4rem;
    }

    .intro-content h2,
    .section-title {
        font-size: 2.2rem;
    }

    /* Switch to vertical layout on mobile */
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }

    .intro-actions {
        justify-content: center;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .contact-details p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .banner {
        height: 50vh;
    }

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

    .brand-description {
        font-size: 1.2rem;
    }

    .brand-introduction,
    .news-section,
    .faq-section {
        padding: 4rem 0;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .site-logo-text h1 {
        font-size: 1.5rem;
    }

    .intro-content h2,
    .section-title {
        font-size: 1.8rem;
    }

    .intro-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
    }
}

/* Animation delays for staggered effects */
.news-card:nth-child(1) { transition-delay: 0.1s; }
.news-card:nth-child(2) { transition-delay: 0.2s; }
.news-card:nth-child(3) { transition-delay: 0.3s; }
.news-card:nth-child(4) { transition-delay: 0.4s; }
.news-card:nth-child(5) { transition-delay: 0.5s; }
.news-card:nth-child(6) { transition-delay: 0.6s; }

.faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-item:nth-child(2) { transition-delay: 0.2s; }
.faq-item:nth-child(3) { transition-delay: 0.3s; }
.faq-item:nth-child(4) { transition-delay: 0.4s; }
.faq-item:nth-child(5) { transition-delay: 0.5s; }

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Other styles remain unchanged; only minor adjustments are made to the news section */

/* News Excerpt Style */
.news-excerpt p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Ensure consistent height for news cards */
.news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-excerpt {
    flex: 1;
}




/* News List Page Styles */
.archive-page .page-header {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.archive-page .page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.archive-page .page-description {
    font-size: 1.2rem;
    opacity: 0.9;
}

.news-archive {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.archive-main {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.archive-grid {
    display: grid;
    gap: 2.5rem;
}

.archive-card {
    /* display: grid; */
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #e67e22;
}

.archive-image {
    position: relative;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.archive-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #e67e22;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.archive-content-text h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.4;
}

.archive-content-text h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.archive-content-text h2 a:hover {
    color: #e67e22;
}

.archive-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: #999;
    font-size: 0.9rem;
}

.archive-meta .date,
.archive-meta .author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.archive-meta .date::before {
    content: "📅";
}

.archive-meta .author::before {
    content: "👤";
}

.archive-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.archive-excerpt p {
    margin: 0;
}

.read-more {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: #d35400;
    gap: 0.8rem;
}

/* Pagination Style */
.archive-pagination {
    margin-top: 4rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.navigation.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
}

.page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-numbers.current {
    background: #e67e22;
    color: white;
    border-color: #e67e22;
}

.page-numbers:hover {
    background: #f8f9fa;
    color: #e67e22;
}

.page-numbers.prev,
.page-numbers.next {
    font-weight: 600;
}

/* Sidebar Styles */
.archive-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    border: 1px solid #f0f0f0;
}

.sidebar-widget h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #e67e22;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

.category-list,
.recent-posts,
.popular-posts {
    list-style: none;
}

.category-list li,
.recent-posts li,
.popular-posts li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.category-list li:hover,
.recent-posts li:hover,
.popular-posts li:hover {
    transform: translateX(5px);
}

.category-list li:last-child,
.recent-posts li:last-child,
.popular-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.category-list a,
.recent-posts a,
.popular-posts a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    font-weight: 500;
}

.category-list a:hover,
.recent-posts a:hover,
.popular-posts a:hover {
    color: #e67e22;
}

.category-list span {
    color: #999;
    font-size: 0.8rem;
    background: #f8f9fa;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    margin-left: 0.5rem;
}

.newsletter-widget {
    text-align: center;
}

.newsletter-widget p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #e67e22;
    box-shadow: 0 0 0 2px rgba(230, 126, 34, 0.1);
}

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

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.no-posts h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.no-posts p {
    color: #666;
    font-size: 1.1rem;
}


/* News Content Page Style */
.single-page {
    background: #f8f9fa;
}

.single-article {
    padding: 4rem 0;
    margin-top: 80px;
}

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

.article-main {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.article-header {
    margin-bottom: 3rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 2rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: #999;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.article-meta .category {
    background: #e67e22;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-meta .date,
.article-meta .author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.article-meta .date::before {
    content: "📅";
}

.article-meta .author::before {
    content: "👤";
}

.article-title {
    color: #2c3e50;
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: left;
}

.article-excerpt {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    border-left: 4px solid #e67e22;
    padding-left: 1.5rem;
    text-align: left;
    font-style: italic;
}

.article-featured-image {
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    position: relative;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.article-featured-image:hover img {
    transform: scale(1.02);
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 4rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2 {
    color: #2c3e50;
    margin: 2.5rem 0 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    border-bottom: 2px solid #e67e22;
    padding-bottom: 0.5rem;
}

.article-body h3 {
    color: #2c3e50;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.article-body h4 {
    color: #2c3e50;
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.article-body blockquote {
    border-left: 4px solid #e67e22;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

.article-body ul,
.article-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.article-footer {
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 2rem 0;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.tags-label {
    font-weight: 600;
    color: #2c3e50;
    margin-right: 0.5rem;
}

.tag {
    display: inline-block;
    background: #f8f9fa;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.tag:hover {
    background: #e67e22;
    color: white;
    border-color: #e67e22;
    transform: translateY(-2px);
}

.article-share {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.share-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.share-button {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-button::before {
    font-size: 1rem;
}

.share-button.facebook {
    background: #3b5998;
    color: white;
}

.share-button.facebook::before {
    content: "👍";
}

.share-button.twitter {
    background: #1da1f2;
    color: white;
}

.share-button.twitter::before {
    content: "🐦";
}

.share-button.linkedin {
    background: #0077b5;
    color: white;
}

.share-button.linkedin::before {
    content: "💼";
}

.share-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Related Articles */
.related-posts {
    margin-bottom: 4rem;
}

.related-posts h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e67e22;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

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

.related-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #e67e22;
}

.related-image {
    height: 180px;
    overflow: hidden;
}

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

.related-card:hover .related-image img {
    transform: scale(1.1);
}

.related-content {
    padding: 1.5rem;
}

.related-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.related-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-content h3 a:hover {
    color: #e67e22;
}

.related-meta {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.related-meta::before {
    content: "📅";
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
}

.author-bio {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.author-avatar {
    margin-bottom: 1rem;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #e67e22;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.author-info h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.author-name {
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.author-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.author-link {
    color: #2c3e50;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.author-link:hover {
    color: #e67e22;
    gap: 0.8rem;
}

.author-link::after {
    content: "→";
}

.popular-posts li {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.popular-posts li:hover {
    transform: translateX(5px);
}

.popular-posts .post-date {
    color: #999;
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .archive-content,
    .article-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .archive-card {
        grid-template-columns: 250px 1fr;
    }
    
    .article-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .archive-page .page-header h1,
    .single-page .article-title {
        font-size: 2rem;
    }
    
    .archive-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .archive-image {
        height: 200px;
    }
    
    .article-main {
        padding: 2rem;
    }
    
    .article-footer {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .archive-content,
    .article-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .archive-page .page-header,
    .single-article {
        margin-top: 70px;
    }
    
    .archive-page .page-header h1 {
        font-size: 1.8rem;
    }
    
    .article-title {
        font-size: 1.6rem;
    }
    
    .article-excerpt {
        font-size: 1rem;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .sidebar-widget,
    .author-bio {
        padding: 1.5rem;
    }
    
    .archive-main {
        padding: 1.5rem;
    }
}


/* About Us Page Style */
.about-page .page-header {
    background: linear-gradient(135deg, #c9a870 0%, #34495e 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.about-page .page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-page .page-description {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Company Introduction Section */
.company-intro {
    padding: 5rem 0;
    background: #fff;
}

.intro-content h2 {
    text-align: left;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #e67e22;
    border-radius: 2px;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.intro-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-placeholder {
    position: relative;
    background: #e9ecef;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.image-placeholder img {
    opacity: 0.7;
}

.placeholder-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #6c757d;
    font-weight: 500;
    text-align: center;
    background: rgba(255,255,255,0.9);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    font-weight: 700;
}

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

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

.value-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: #e67e22;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: #e67e22;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: #2c3e50;
    transform: scale(1.1);
}

.value-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.value-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Service Section */
.services-section {
    padding: 5rem 0;
    background: #fff;
}

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

.service-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e67e22;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.2);
}

.service-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.service-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-grid {
        gap: 3rem;
    }
    
    .values-grid,
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-page .page-header h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-content h2 {
        font-size: 2rem;
    }
    
    .values-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item,
    .service-item {
        padding: 2rem;
    }
    
    .company-intro,
    .values-section,
    .services-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .about-page .page-header {
        margin-top: 70px;
        padding: 3rem 0;
    }
    
    .about-page .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .intro-content h2 {
        font-size: 1.8rem;
    }
    
    .intro-content p {
        font-size: 1rem;
    }
    
    .value-item,
    .service-item {
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
}

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

.company-intro,
.values-section,
.services-section {
    animation: fadeInUp 0.8s ease forwards;
}

.values-grid .value-item,
.services-grid .service-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}





/* FAQ List Page Style - Blue Theme */
.faq-archive-page .faq-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-top: 80px;
}

.faq-archive-page .faq-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-archive-page .page-description {
    font-size: 1.2rem;
    opacity: 0.9;
}

.faq-archive-tools {
    padding: 2rem 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.faq-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto 2rem;
    gap: 0.5rem;
}

.search-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #3498db;
}

.search-button {
    background: #3498db;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.search-button:hover {
    background: #2980b9;
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-filter {
    background: white;
    border: 2px solid #e9ecef;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-filter.active,
.category-filter:hover {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.faq-archive {
    padding: 4rem 0;
    background: #fff;
}

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

.faq-category-section {
    margin-bottom: 4rem;
}

.category-title {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #3498db;
    font-weight: 600;
}

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

.faq-archive-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.faq-archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.15);
    border-color: #3498db;
}

.faq-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.faq-card-header h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

.faq-card-header h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-card-header h3 a:hover {
    color: #3498db;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-left: 1rem;
    flex-shrink: 0;
}

.faq-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.faq-meta {
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

.read-answer {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-answer:hover {
    color: #2980b9;
    gap: 0.8rem;
}

/* FAQ Sidebar */
.faq-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    border: 2px solid #f8f9fa;
}

.sidebar-widget h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

.popular-faqs,
.faq-category-list {
    list-style: none;
}

.popular-faqs li,
.faq-category-list li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.popular-faqs li:hover,
.faq-category-list li:hover {
    transform: translateX(5px);
}

.popular-faqs li:last-child,
.faq-category-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-faqs a,
.faq-category-list a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    font-weight: 500;
}

.popular-faqs a:hover,
.faq-category-list a:hover {
    color: #3498db;
}

.contact-promo {
    text-align: center;
}

.contact-promo p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.no-faqs {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.no-faqs h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.no-faqs p {
    color: #666;
}

/* FAQ Content Page Style */
.faq-single-page {
    background: #f8f9fa;
}

.single-faq {
    padding: 4rem 0;
    margin-top: 80px;
}

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

.faq-main {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 2px solid #f0f0f0;
}

.faq-header {
    margin-bottom: 3rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 2rem;
}

.faq-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: #999;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.faq-category {
    background: #3498db;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.faq-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-date::before {
    content: "📅";
}

.faq-title {
    color: #2c3e50;
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 0;
    font-weight: 700;
}

.faq-body {
    margin-bottom: 4rem;
}

.faq-footer {
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 2rem 0;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.faq-helpful {
    text-align: center;
}

.faq-helpful p {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.helpful-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.helpful-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.helpful-btn:hover {
    border-color: #3498db;
    color: #3498db;
}

.yes-btn:hover {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.no-btn:hover {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.faq-share {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.share-label {
    font-weight: 600;
    color: #2c3e50;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-button {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-button.email {
    background: #3498db;
    color: white;
}

.share-button.print {
    background: #95a5a6;
    color: white;
}

.share-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Related FAQ */
.related-faqs {
    margin-bottom: 4rem;
}

.related-faqs h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

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

.related-faq-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.related-faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #3498db;
}

.related-icon {
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.related-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.related-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-content h3 a:hover {
    color: #3498db;
}

.read-related {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-related:hover {
    color: #2980b9;
    gap: 0.8rem;
}

/* FAQ Navigation Sidebar */
.faq-navigation {
    position: sticky;
    top: 100px;
}

.nav-widget {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    border: 2px solid #f8f9fa;
}

.nav-widget h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

.back-to-faqs {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-to-faqs:hover {
    color: #2980b9;
    gap: 0.8rem;
}

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

.quick-links li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.quick-links li:hover {
    transform: translateX(5px);
}

.quick-links li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.quick-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    font-weight: 500;
}

.quick-links a:hover {
    color: #3498db;
}

.help-promo {
    text-align: center;
}

.help-promo p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .archive-content,
    .faq-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-category-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .faq-navigation {
        position: static;
    }
}

@media (max-width: 768px) {
    .faq-archive-page .faq-header h1,
    .faq-single-page .faq-title {
        font-size: 2rem;
    }
    
    .faq-category-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-main {
        padding: 2rem;
    }
    
    .faq-footer {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-meta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-search {
        flex-direction: column;
    }
    
    .faq-categories {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .faq-archive-page .faq-header,
    .faq-single-page {
        margin-top: 70px;
    }
    
    .faq-archive-page .faq-header h1 {
        font-size: 1.8rem;
    }
    
    .faq-title {
        font-size: 1.6rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .sidebar-widget,
    .nav-widget {
        padding: 1.5rem;
    }
    
    .faq-main {
        padding: 1.5rem;
    }
    
    .faq-archive-card {
        padding: 1.5rem;
    }
}






/* lunbo */
.container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .design-section {
      display: flex;
      flex-wrap: wrap;
      background: #fff;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .design-section:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .carousel-container {
      flex: 1;
      min-width: 300px;
      position: relative;
      overflow: hidden;
    }

    .carousel {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 500px;
    }

    .carousel-slides {
      display: flex;
      transition: transform 0.5s ease;
      height: 100%;
    }

    .carousel-slide {
      min-width: 100%;
      height: 100%;
      position: relative;
    }

    .carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .slide-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 30px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
      color: white;
    }

    .slide-title {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      margin-bottom: 8px;
    }

    .slide-description {
      font-size: 15px;
      opacity: 0.9;
    }

    .text-container {
      flex: 1;
      min-width: 300px;
      position: relative;
      overflow: hidden;
    }

    .text-slides {
      display: flex;
      transition: transform 0.5s ease;
      height: 100%;
    }

    .text-slide {
      min-width: 100%;
      padding: 60px 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .featured-description {
      font-size: 17px;
      color: #555;
      line-height: 1.8;
      margin-bottom: 25px;
    }

    .highlight {
      color: #c8a97e;
      font-weight: 500;
    }

    .design-features {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin: 25px 0;
    }

    .feature {
      flex: 1;
      min-width: 150px;
      padding: 15px;
      background: #f9f9f7;
      border-radius: 8px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .feature:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .feature i {
      font-size: 24px;
      color: #c8a97e;
      margin-bottom: 10px;
    }

    .feature h3 {
      font-size: 16px;
      margin-bottom: 8px;
      color: #333;
    }

    .feature p {
      font-size: 14px;
      color: #666;
    }
    .signature a{
      font-family: 'Playfair Display', serif;
      font-style: italic;
      color: #777;
      margin-top: 20px;
      font-size: 16px;
    }

    .carousel-controls {
      position: absolute;
      bottom: 20px;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px;
      z-index: 10;
    }

    .carousel-btn {
      background: rgba(255, 255, 255, 0.8);
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      color: #333;
    }

    .carousel-btn:hover {
      background: white;
      transform: scale(1.1);
    }

    .carousel-dots {
      display: flex;
      gap: 8px;
    }

    .carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .carousel-dot.active {
      background: white;
      transform: scale(1.2);
    }

    .text-dots {
      position: absolute;
      bottom: 20px;
      right: 20px;
      display: flex;
      gap: 8px;
    }

    .text-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(200, 169, 126, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .text-dot.active {
      background: #c8a97e;
      transform: scale(1.2);
    }

    .auto-play-toggle {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(255, 255, 255, 0.8);
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 10;
      color: #333;
    }

    .auto-play-toggle:hover {
      background: white;
      transform: scale(1.1);
    }

    @media (max-width: 768px) {
      .text-slide {
        padding: 40px 30px;
      }

      .section-title {
        font-size: 28px;
      }

      .featured-description {
        font-size: 16px;
      }

      .carousel {
        min-height: 400px;
      }
    }


    







    .nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 2rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background-color: #f8f9fa;
    border-color: #007bff;
    color: #007bff;
}

.nav-contact {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #c9a870;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-contact:hover {
    background-color: #0056b3;
    color: white;
}

/* Mobile Adaptation */
@media screen and (max-width: 768px) {
    .nav-buttons {
        display: none;
        flex-direction: column;
        width: 100%;
        margin: 1rem 0;
    }
}











/* Page Header */
.page-header {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info Section */
.contact-info-section {
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

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

/* Contact Details */
.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    width: 40px;
    text-align: center;
}

.contact-text h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-text p,
.contact-text a {
    color: #666;
    text-decoration: none;
    line-height: 1.6;
}

.contact-text a:hover {
    color: #007bff;
}

/* Contact Form */
.contact-form-container {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wpcf7-form input,
.wpcf7-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.wpcf7-form textarea {
    min-height: 150px;
    resize: vertical;
}

.wpcf7-form input[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.wpcf7-form input[type="submit"]:hover {
    background-color: #0056b3;
}


/* Responsive Design */
@media screen and (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-description {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 768px) {
    .contact-page {
        padding: 1rem 0;
    }

    .page-header {
        padding: 3rem 0;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .map-placeholder {
        height: 300px;
    }
}

@media screen and (max-width: 576px) {
    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-description {
        font-size: 1rem;
    }

    .contact-item {
        padding: 0.8rem;
    }

    .contact-form-container {
        padding: 1rem;
    }

    .map-placeholder {
        height: 250px;
    }
}

/* Form Validation Styles */
.wpcf7-form .wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.wpcf7-form .wpcf7-response-output {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 4px;
}

.wpcf7-form .wpcf7-mail-sent-ok {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wpcf7-form .wpcf7-validation-errors {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}










/* Contact Form Styles */
.contact-form-container {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #007bff;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #0056b3;
}

/* Form Validation Styles */
.form-group input:invalid,
.form-group textarea:invalid,
.form-group select:invalid {
    border-color: #dc3545;
}

.form-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}





/* Map Section Styles */
.map-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .map-wrapper iframe {
        height: 350px;
    }
}

@media screen and (max-width: 576px) {
    .map-wrapper iframe {
        height: 300px;
    }
}
