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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0;
    flex-wrap: wrap;
}

.logo {
    margin: 5px;
    line-height: 1px;
}

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

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: nowrap;
}

.nav-link:hover {
    color: #FF8C00;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: #FF7F00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.btn-secondary {
    background-color: #fff;
    color: #FF8C00;
    border: 2px solid #FF8C00;
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    margin-top: 100px;
    padding: 80px 0;
    background-color: #fff8f0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #FF8C00;
}

.stat-label {
    display: block;
    color: #666;
    font-size: 14px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Page Content */
.page-content {
    margin-top: 120px;
    background-color: #fff;
}

.page-content .container {
    max-width: 900px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid #FFE4B5;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-body {
    background-color: #fafafa;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-body p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.page-body h2 {
    font-size: 28px;
    font-weight: 600;
    color: #FF8C00;
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #FFE4B5;
}

.page-body h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 30px 0 16px;
}

.page-body ul, .page-body ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.page-body ul li, .page-body ol li {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.8;
}

.page-body ul li {
    list-style-type: disc;
}

.page-body ol li {
    list-style-type: decimal;
}

.page-body a {
    color: #FF8C00;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.page-body a:hover {
    color: #FF7F00;
    border-bottom-color: #FF7F00;
}

.page-body strong {
    color: #333;
    font-weight: 600;
}

/* Responsive for page template */
@media (max-width: 768px) {
    .page-content {
        padding: 60px 0;
    }
    
    .page-body {
        padding: 30px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-body h2 {
        font-size: 24px;
    }
    
    .page-body h3 {
        font-size: 20px;
    }
    
    .page-body p {
        text-align: left;
    }
}

/* Fix anchor links being hidden by fixed header */
#home, #services, #features, #pricing, #contact {
    scroll-margin-top: 100px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #fff;
}

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

.service-card {
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.service-icon {
    margin-bottom: 24px;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.service-description {
    color: #666;
    font-size: 16px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #fff8f0;
}

.features-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    padding: 16px;
    background-color: #FFE4B5;
    border-radius: 50%;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.feature-description {
    color: #666;
    font-size: 16px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card-popular {
    background-color: #fff;
    border: 2px solid #FF8C00;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FF8C00;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 30px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #FF8C00;
}

.period {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

.pricing-list {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-item {
    padding: 12px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

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

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #fff8f0;
}

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

.testimonial-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 16px;
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.author-info {
    text-align: center;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.author-company {
    font-size: 14px;
    color: #999;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #666;
    font-size: 16px;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-legal {
    width: 100%;
}

.footer-legal-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-legal-item {
    margin: 0 10px;
}

.footer-legal-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-legal-link:hover {
    color: #FF8C00;
}

.footer-separator {
    color: #666;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #333;
    left: 0;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    top: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: flex;
        align-items: center;
        gap: 15px;
        position: static;
        width: auto;
        padding: 0;
        box-shadow: none;
        transition: none;
    }
    
    .nav-list {
        display: flex;
        gap: 15px;
        margin-bottom: 0;
        width: auto;
    }
    
    .nav-item {
        width: auto;
        display: inline-block;
    }
    
    .nav-link {
        display: inline;
        padding: 0;
        width: auto;
        text-align: left;
        white-space: nowrap;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-popular {
        transform: none;
    }
    
    .features-content {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .service-card,
    .pricing-card,
    .testimonial-card,
    .contact-form {
        padding: 30px 20px;
    }
    
    .price {
        font-size: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages Styles */
.terms, .privacy, .cookie {
    margin-top: 120px;
    padding: 80px 0;
    background-color: #fff;
}

.terms-content, .privacy-content, .cookie-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fafafa;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.terms-title, .privacy-title, .cookie-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.2;
}

.terms-date, .privacy-date, .cookie-date {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    display: block;
    padding-bottom: 20px;
    border-bottom: 2px solid #FFE4B5;
}

.terms-section, .privacy-section, .cookie-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.terms-section:hover, .privacy-section:hover, .cookie-section:hover {
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.terms-section:last-child, .privacy-section:last-child, .cookie-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 30px;
}

.terms-section-title, .privacy-section-title, .cookie-section-title {
    font-size: 24px;
    font-weight: 600;
    color: #FF8C00;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #FFE4B5;
    display: inline-block;
}

.terms-content p, .privacy-content p, .cookie-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.terms-list, .privacy-list, .cookie-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.terms-list li, .privacy-list li, .cookie-list li {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
    padding-left: 30px;
    position: relative;
}

.terms-list li::before, .privacy-list li::before, .cookie-list li::before {
    content: "•";
    color: #FF8C00;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 2px;
}

.terms-list strong, .privacy-list strong, .cookie-list strong {
    color: #333;
    font-weight: 600;
}

/* Add some spacing for better readability */
.terms-content h3 + p, .privacy-content h3 + p, .cookie-content h3 + p {
    margin-top: 0;
}

/* Style for any links in legal pages */
.terms-content a, .privacy-content a, .cookie-content a {
    color: #FF8C00;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.terms-content a:hover, .privacy-content a:hover, .cookie-content a:hover {
    color: #FF7F00;
    border-bottom-color: #FF7F00;
}

@media (max-width: 768px) {
    .terms, .privacy, .cookie {
        padding: 40px 0;
    }
    
    .terms-content, .privacy-content, .cookie-content {
        padding: 20px;
    }
    
    .terms-title, .privacy-title, .cookie-title {
        font-size: 28px;
    }
    
    .terms-section-title, .privacy-section-title, .cookie-section-title {
        font-size: 20px;
    }
    
    .terms-content p, .privacy-content p, .cookie-content p,
    .terms-list li, .privacy-list li, .cookie-list li {
        font-size: 15px;
        text-align: left;
    }
    
    .terms-section, .privacy-section, .cookie-section {
        padding: 20px;
    }
}

/* Language Switcher Styles */
.language-switcher {
    position: relative;
    margin-left: 20px;
}

.current-language {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.current-language:hover {
    background-color: #e0e0e0;
}

.language-flag {
    font-size: 18px;
    margin-left: 5px;
}

.language-list {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    list-style: none;
    min-width: 150px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-switcher:hover .language-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-item {
    border-bottom: 1px solid #f0f0f0;
}

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

.language-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s ease;
}

.language-link:hover {
    background-color: #fff8f0;
    color: #FF8C00;
}

.language-item.active .language-link {
    background-color: #fff8f0;
    color: #FF8C00;
}

/* Responsive Language Switcher */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
        margin-top: 15px;
    }
}

/* Blog Page Styles */
.blog-page {
    padding: 60px 0;
    background-color: #fff;
}

.blog-header {
    text-align: center;
    margin-bottom: 80px;
}

.blog-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-description {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Tag Header Styles */
.tag-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 80px;
    text-align: left;
}

.tag-thumbnail {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f5f5f5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tag-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag-info {
    flex: 1;
}

.tag-description {
    font-size: 18px;
    color: #666;
    margin-top: 15px;
    line-height: 1.6;
}

/* Responsive Tag Header */
@media (max-width: 768px) {
    .tag-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .tag-thumbnail {
        width: 120px;
        height: 120px;
    }
}

/* Single Post Styles */
.single .site-main {
    padding: 120px 0 60px;
    background-color: #fff;
    position: relative;
    z-index: 1;
}


.entry-header {
    margin-bottom: 40px;
    text-align: center;
}

.entry-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: #666;
    margin-top: 0;
    padding-top: 15px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.entry-meta i {
    color: #999;
}

.entry-meta a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-meta a:hover {
    color: #333;
}

/* Post Tags Style */
.entry-meta .tags-links a {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 5px 5px 0;
    background-color: #f5f5f5;
    border-radius: 20px;
    color: #666;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.entry-meta .tags-links a:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.entry-meta .tags-links i {
    margin-right: 5px;
    color: #999;
}

.entry-thumbnail {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.entry-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 60px;
}

.entry-content p {
    margin-bottom: 25px;
}

.entry-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 40px 0 20px;
}

.entry-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 30px 0 15px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.entry-content blockquote {
    border-left: 4px solid #333;
    padding-left: 20px;
    font-style: italic;
    color: #666;
    margin: 30px 0;
}

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

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

.entry-content code {
    background-color: #f5f5f5;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    color: #d63384;
}

.entry-content pre {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

/* Post Tags Section */
.post-tags {
    margin: 60px 0 30px;
    padding: 30px;
    background-color: #fafafa;
    border-radius: 12px;
    border: 1px solid #eee;
}

/* Blog Post Tags */
.blog-post-tags {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background-color: #f0f0f0;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    color: #555;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background-color: #FF8C00;
    color: white;
}

.tag-thumbnail {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 6px;
    object-fit: cover;
}

.tags-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tags-title i {
    color: #FF8C00;
    font-size: 24px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.post-tags a {
    display: inline-block;
    padding: 8px 18px;
    background-color: #fff;
    border: 2px solid #FF8C00;
    border-radius: 25px;
    color: #FF8C00;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.post-tags a:hover {
    background-color: #FF8C00;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.2);
}

.entry-content pre code {
    background-color: transparent;
    padding: 0;
    color: #333;
}

/* Content Pagination */
.page-links {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.page-links span {
    font-weight: 600;
    color: #333;
}

.page-links a {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 5px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-links a:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

/* Post Navigation */
.post-navigation {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.nav-previous, 
.nav-next {
    flex: 1;
    text-align: center;
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.post-navigation a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.post-navigation a:hover {
    background-color: #333;
    color: #fff;
}

.post-navigation i {
    font-size: 14px;
}

/* Comments Section */
.comments-area {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.comment-reply-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.comment-list {
    margin-bottom: 40px;
}

.comment {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-author .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-author .fn {
    font-weight: 600;
    color: #333;
}

.comment-meta {
    font-size: 14px;
    color: #999;
}

.comment-content {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.comment-form {
    margin-top: 40px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.comment-form input, 
.comment-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.comment-form input:focus, 
.comment-form textarea:focus {
    outline: none;
    border-color: #333;
}

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

.comment-form-submit {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.comment-form-submit:hover {
    background-color: #555;
}

/* Responsive Single Post */
@media (max-width: 768px) {
    .single .site-main {
        padding: 40px 0;
    }
    
    .entry-title {
        font-size: 32px;
    }
    
    .entry-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .entry-content {
        font-size: 16px;
    }
    
    .entry-content h2 {
        font-size: 28px;
    }
    
    .entry-content h3 {
        font-size: 22px;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-previous, 
    .nav-next {
        text-align: center;
        width: 100%;
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.blog-post {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-post-thumbnail {
    overflow: hidden;
    height: 250px;
}

.blog-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .blog-post-thumbnail img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 30px;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #999;
}

.post-date, .post-author {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-post-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.4;
}

.blog-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: #FF8C00;
}

.blog-post-excerpt {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FF8C00;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.read-more:hover {
    background-color: #FF7F00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff8f0;
    border-radius: 12px;
    grid-column: 1 / -1;
}

.no-posts p {
    font-size: 18px;
    color: #666;
}

/* Pagination Styles */
.pagination {
    text-align: center;
}

.pagination .nav-links {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #f5f5f5;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover {
    background-color: #FFE4B5;
    color: #FF8C00;
}

.pagination .page-numbers.current {
    background-color: #FF8C00;
    color: white;
}

.pagination .prev.page-numbers, .pagination .next.page-numbers {
    width: auto;
    padding: 0 16px;
    background-color: #FF8C00;
    color: white;
}

.pagination .prev.page-numbers:hover, .pagination .next.page-numbers:hover {
    background-color: #FF7F00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

/* Responsive Blog Page */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .blog-page {
        padding: 60px 0;
    }
    
    .blog-header {
        margin-bottom: 60px;
    }
    
    .blog-title {
        font-size: 32px;
    }
    
    .blog-description {
        font-size: 16px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }
    
    .blog-post-thumbnail {
        height: 200px;
    }
    
    .blog-post-content {
        padding: 24px;
    }
    
    .blog-post-title {
        font-size: 20px;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .pagination .nav-links {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .pagination .page-numbers {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .pagination .prev.page-numbers, .pagination .next.page-numbers {
        padding: 0 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .blog-page {
        padding: 40px 0;
    }
    
    .blog-header {
        margin-bottom: 40px;
    }
    
    .blog-title {
        font-size: 28px;
    }
    
    .blog-post-thumbnail {
        height: 180px;
    }
    
    .blog-post-content {
        padding: 20px;
    }
    
    .blog-post-excerpt {
        font-size: 15px;
    }
}