/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    max-width: 100vw;
    z-index: 9999 !important;
    overflow-x: hidden;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    color: #EE7642;
    position: relative;
}

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

.nav-logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-logo h2 {
    color: #000;
    font-weight: 700;
    font-size: 1.5rem;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: #EE7642;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #000;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 40px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #FF6B35 !important;
    border-color: #FF6B35 !important;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: #FF8C42 !important;
    border-color: #FF8C42 !important;
    color: #fff !important;
}

.btn-orange {
    background-color: #FF6B35;
    border-color: #FF6B35;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: #FF8C42;
    border-color: #FF8C42;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background-color: #FF8C42 !important;
    border-color: #FF8C42 !important;
    color: #fff !important;
}

.btn-secondary:hover {
    background-color: #FF6B35 !important;
    border-color: #FF6B35 !important;
    color: #fff !important;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.feature-item i {
    color: #FF6B35;
    font-size: 1.1rem;
}

.coverage-cities {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #333;
    border: 1px solid #e9ecef;
}

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

.quick-links {
    background: #f8f9fa;
    padding: 3rem 0;
}

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

.link-item {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.link-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.link-item a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #333;
}

.link-item i {
    color: #FF6B35;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.link-item:hover i {
    transform: translateX(5px);
}

.link-item span {
    font-weight: 600;
    font-size: 1.1rem;
    color: #FF6B35;
}

.link-item small {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Coverage Section */
.coverage {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.coverage-content h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.coverage-content h3 {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 600;
}

.coverage-content p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 1rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 2px solid #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: #FF6B35;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.service-benefits {
    list-style: none;
}

.service-benefits li {
    color: #555;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background: #fff;
}

.trust-content h2 {
    font-size: 2.5rem;
    color: #000;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.trust-content h2 em {
    color: #666;
    font-style: italic;
}

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

.trust-point {
    text-align: center;
    padding: 2rem;
}

.trust-point i {
    font-size: 3rem;
    color: #000;
    margin-bottom: 1rem;
}

.trust-point h4 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.trust-point p {
    color: #666;
    line-height: 1.6;
}

/* Blog Preview */
.blog-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.blog-content {
    padding: 1.5rem;
}

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

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

.blog-meta i {
    font-size: 0.8rem;
}

.blog-category a {
    text-decoration: none;
    font-weight: 500;
}

.blog-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

.blog-more {
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #fff;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author h4 {
    color: #000;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #000;
    color: black;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.cta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-item i {
    font-size: 2rem;
    color: #fff;
}

.cta-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cta-item p {
    color: #ccc;
}

/* Footer */
.footer {
    background: #111;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.social-links a:hover {
    background: #000;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
} 

/* Przyciski z ikonkami */
.btn i {
    margin-right: 8px;
    font-size: 14px;
}

.btn-large i {
    font-size: 16px;
    margin-right: 10px;
}

.btn-small i {
    font-size: 12px;
    margin-right: 6px;
}

/* Przyciski CTA */
.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-large {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 180px;
}

.btn-primary {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
    border: 2px solid #000;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #333 0%, #000 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: white;
    color: #000;
    border: 2px solid #000;
}

.btn-secondary:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 4px;
}

.btn-submit {
    background-color: #FF6B35 !important;
    border-color: #FF6B35 !important;
    color: #fff !important;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-submit:hover {
    background-color: #FF8C42 !important;
    border-color: #FF8C42 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Kontakt options */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-option {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.contact-option:hover {
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-option i {
    font-size: 24px;
    color: #000;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.contact-option h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.contact-option p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Telefon button special styling */
.btn[href^="tel:"] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-color: #28a745;
}

.btn[href^="tel:"]:hover {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
}

.btn[href^="tel:"] i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
} 

/* Nawigacja telefon */
.nav-contact {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.nav-phone {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.nav-phone:hover {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    color: white;
}

.nav-phone i {
    margin-right: 8px;
    font-size: 16px;
    animation: pulse 2s infinite;
}

.nav-phone span {
    font-weight: 600;
}

/* Responsive dla telefonu w nawigacji */
@media (max-width: 768px) {
    .nav-contact {
        display: none;
    }
    
    .nav-phone {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .nav-phone span {
        display: none;
    }
    
    .nav-phone i {
        margin-right: 0;
        font-size: 18px;
    }
} 

/* Footer linki kontaktowe */
.footer-section a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #000;
    text-decoration: underline;
}

.footer-section a[href^="tel:"] {
    color: #28a745;
}

.footer-section a[href^="tel:"]:hover {
    color: #20c997;
}

.footer-section a[href^="mailto:"] {
    color: #007bff;
}

.footer-section a[href^="mailto:"]:hover {
    color: #0056b3;
}

.footer-section a[href*="maps.google.com"] {
    color: #dc3545;
}

.footer-section a[href*="maps.google.com"]:hover {
    color: #c82333;
} 

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        position: relative;
        z-index: 9999;
    }
    
    .nav-container {
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .nav-logo img {
        height: 40px;
        max-width: 150px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100vh;
        background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
        z-index: 9997;
        flex-direction: column;
        padding: 80px 20px 20px 20px;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9996;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .nav-menu::before {
        content: '×';
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 24px;
        color: #000000;
        cursor: pointer;
        z-index: 100001;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 50%;
        transition: all 0.3s ease;
        background: rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu::before:hover {
        background: rgba(0, 0, 0, 0.1);
        border-color: rgba(0, 0, 0, 0.3);
        transform: scale(1.1);
    }
    
    .nav-menu.active {
        display: flex;
        left: 0;
    }
    
    .nav-menu li {
        margin: 8px 0;
        width: 100%;
        text-align: left;
        opacity: 1 !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .nav-menu .nav-link {
        display: flex;
        align-items: center;
        padding: 15px 20px;
        border-radius: 8px;
        background: transparent;
        color: #ffffff !important;
        font-weight: 500;
        font-size: 16px;
        text-transform: none;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        text-align: left;
        width: 100%;
        margin: 0;
        text-decoration: none;
        border: none;
        position: relative;
        overflow: hidden;
    }
    
    .nav-menu .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 3px;
        height: 100%;
        background: #ff6b35;
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .nav-menu .nav-link:hover::before,
    .nav-menu .nav-link.active::before {
        transform: scaleY(1);
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff !important;
        transform: translateX(5px);
        padding-left: 25px;
    }
    
    .nav-contact {
        display: none;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 12px;
        z-index: 9999;
        background: transparent;
        border: none;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .hamburger:hover {
        transform: scale(1.1);
    }
    
    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: #000000;
        margin: 3px 0;
        transition: all 0.3s ease;
        border-radius: 1px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: #000000;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background: #000000;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo img {
        height: 35px;
        max-width: 120px;
    }
    
    .nav-menu {
        padding: 25px 15px;
    }
    
    .nav-menu .nav-link {
        padding: 16px 20px;
        font-size: 15px;
        max-width: 280px;
    }
    
    .hamburger span {
        width: 24px;
        height: 2px;
    }
}

/* Very small devices */
@media (max-width: 320px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-logo img {
        height: 30px;
        max-width: 100px;
    }
    
    .nav-menu {
        padding: 20px 10px;
    }
    
    .nav-menu .nav-link {
        padding: 14px 16px;
        font-size: 14px;
        max-width: 260px;
    }
    
    .hamburger span {
        width: 22px;
        height: 2px;
    }
} 

/* MOBILE ONLY - Wymuszenie centrowania WSZYSTKICH elementów */
@media (max-width: 768px) {
    /* Wymuszenie centrowania dla WSZYSTKICH elementów */
    * {
        text-align: center !important;
    }
    
    /* Wyjątki - elementy które muszą być wyrównane do lewej */
    .service-benefits,
    .service-benefits li,
    .post-content,
    .post-content p,
    .post-content ul,
    .post-content ol,
    .privacy-section p,
    .privacy-section ul,
    .privacy-section li {
        text-align: left !important;
    }
    
    /* Kontenery - wymuszenie centrowania */
    .container,
    .hero-container,
    .contact-container,
    .reservation-container,
    .blog-container,
    .post-container,
    .about-container,
    .privacy-content,
    .account-container,
    .services-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    /* Wszystkie sekcje - centrowanie */
    .hero,
    .hero-content,
    .services,
    .cta,
    .cta-content,
    .contact-content,
    .reservation-content,
    .blog-content,
    .about-content,
    .footer {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    /* Wszystkie nagłówki - centrowanie */
    h1, h2, h3, h4, h5, h6 {
        text-align: center !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Wszystkie paragrafy - centrowanie */
    p {
        text-align: center !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Wszystkie przyciski - centrowanie */
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-large,
    .btn-small {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 300px !important;
    }
    
    /* Wszystkie karty - centrowanie */
    .service-card,
    .blog-card,
    .contact-item,
    .contact-option,
    .service-option,
    .goal-option,
    .cta-item,
    .stat-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    /* Gridy - centrowanie */
    .services-grid,
    .blog-grid,
    .contact-info,
    .contact-options,
    .services-grid,
    .goals-grid,
    .cta-info,
    .about-stats,
    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        justify-items: center !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    /* Formularze - centrowanie */
    .contact-form,
    .reservation-form {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    }
    
    /* Inputy - centrowanie */
    input,
    textarea,
    select {
        text-align: center !important;
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    /* Form groups - centrowanie */
    .form-group {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    /* Form rows - centrowanie */
    .form-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
        width: 100% !important;
    }
    
    /* Hero buttons - centrowanie */
    .hero-buttons,
    .cta-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
        width: 100% !important;
    }
    
    /* Meta dane - centrowanie */
    .blog-meta,
    .post-meta {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        width: 100% !important;
    }
    
    /* Kategorie - centrowanie */
    .blog-categories {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
    }
    
    /* Nawigacja postów - centrowanie */
    .post-navigation {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
        width: 100% !important;
    }
    
    /* Footer sections - centrowanie */
    .footer-section {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    /* Social links - centrowanie */
    .social-links {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;
        width: 100% !important;
    }
    
    /* User info - centrowanie */
    .user-info-item {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    /* Tables - centrowanie */
    .reservations-table {
        width: 100% !important;
        text-align: center !important;
    }
    
    .reservations-table th,
    .reservations-table td {
        text-align: center !important;
        padding: 10px 8px !important;
    }
    
    /* Breadcrumb - centrowanie */
    .breadcrumb {
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
} 

/* Blog Preview Page Styles */
.blog-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.blog-hero-content p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-main {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.blog-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: fit-content;
    position: sticky;
    top: 20px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #666;
}

.breadcrumb .separator {
    color: #ccc;
}

/* Blog Categories Filter */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.category-filter {
    padding: 8px 16px;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #fff;
}

.category-filter:hover,
.category-filter.active {
    border-color: #000;
    color: #000;
    background: #000;
    color: #fff;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
}

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

.blog-meta i {
    font-size: 0.8rem;
}

.blog-category a {
    text-decoration: none;
    font-weight: 500;
}

.blog-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.read-more:hover {
    border-bottom-color: #000;
    transform: translateX(5px);
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(3px);
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-posts h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #fff;
}

.page-link:hover,
.page-link.active {
    border-color: #000;
    color: #000;
    background: #000;
    color: #fff;
}

.page-link i {
    font-size: 0.8rem;
}

/* Sidebar Widgets */
.sidebar-widget {
    margin-bottom: 40px;
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Search Form */
.search-form {
    display: flex;
    gap: 10px;
}

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

.search-form input:focus {
    outline: none;
    border-color: #000;
}

.search-form button {
    padding: 12px 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form button:hover {
    background: #333;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #666;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.category-list a:hover,
.category-list a.active {
    background: #f8f9fa;
    color: #000;
    border-left-color: #000;
}

/* Recent Posts */
.recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts li {
    margin-bottom: 20px;
}

.recent-posts a {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.recent-posts a:hover {
    transform: translateX(5px);
}

.recent-post-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-date {
    font-size: 0.8rem;
    color: #666;
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 12px;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    border-radius: 15px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.tag:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-main,
    .blog-sidebar {
        padding: 25px;
    }
    
    .blog-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-categories {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-filter {
        text-align: center;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .page-link {
        min-width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
} 

/* Search Results Info */
.search-results-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #000;
}

.search-results-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.search-results-info p {
    color: #666;
    margin-bottom: 15px;
}

.clear-filters {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border: 2px solid #000;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.clear-filters:hover {
    background: #000;
    color: #fff;
}

.clear-filters::before {
    content: '×';
    font-size: 1.2rem;
    font-weight: bold;
} 

/* Single Blog Post Page Styles */
.post-content {
    padding: 40px 0;
    background: #f8f9fa;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.post-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.post-main {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.post-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: fit-content;
    position: sticky;
    top: 20px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Post Header */
.post-header {
    margin-bottom: 40px;
}

.post-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.post-category {
    padding: 8px 16px;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.post-category:hover {
    transform: translateY(-2px);
}

.post-info {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #666;
    font-size: 0.9rem;
}

.post-info time,
.post-info .post-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-info i {
    font-size: 0.8rem;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
}

.post-excerpt {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #000;
}

/* Post Body */
.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.post-body h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin: 2rem 0 1rem 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.post-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
    margin: 1.5rem 0 0.8rem 0;
}

.post-body h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin: 1.2rem 0 0.6rem 0;
}

.post-body p {
    margin-bottom: 1.2rem;
}

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

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

.post-body blockquote {
    margin: 2rem 0;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #000;
    border-radius: 8px;
    font-style: italic;
    font-size: 1.1rem;
}

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

.post-body a {
    color: #000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.post-body a:hover {
    color: #666;
}

/* Post Footer */
.post-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.post-tags {
    margin-bottom: 30px;
}

.post-tags h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

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

.tag {
    padding: 6px 12px;
    background: #f8f9fa;
    color: #666;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid #e9ecef;
}

.post-share h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

/* Sidebar Widgets */
.sidebar-widget {
    margin-bottom: 40px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

/* Related Posts */
.related-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-post {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    transition: background 0.3s ease;
    border: 1px solid #f0f0f0;
}

.related-post:hover {
    background: #f8f9fa;
}

.related-post-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.4;
}

.related-post-content h4 a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-content h4 a:hover {
    color: #666;
}

.related-post-content time {
    font-size: 0.8rem;
    color: #666;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: #666;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.category-list a:hover,
.category-list a.active {
    background: #f8f9fa;
    color: #000;
    border-left-color: #000;
}

.post-count {
    font-size: 0.8rem;
    color: #999;
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #f0f0f0;
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.cta-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #000;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.cta-widget p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.cta-widget .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
}

/* Improved proportional design for mobile */
@media (max-width: 768px) {
    .post-content {
        padding: 20px 0 !important;
    }
    
    .post-layout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }
    
    .post-main {
        padding: 20px !important;
        border-radius: 8px !important;
    }
    
    .post-sidebar {
        padding: 20px !important;
        border-radius: 8px !important;
        position: static !important;
        top: auto !important;
    }
    
    .post-header {
        margin-bottom: 20px !important;
    }
    
    .post-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
        text-align: center !important;
    }
    
    .post-excerpt {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
        text-align: center !important;
        font-style: italic !important;
        padding: 15px !important;
        background: #f8f9fa !important;
        border-radius: 8px !important;
        border-left: 4px solid #000 !important;
    }
    
    .post-body {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    .post-body h2 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin: 25px 0 15px 0 !important;
        text-align: center !important;
    }
    
    .post-body h3 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
        margin: 20px 0 12px 0 !important;
        text-align: center !important;
    }
    
    .post-body h4 {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
        margin: 18px 0 10px 0 !important;
        text-align: center !important;
    }
    
    .post-body p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
        text-align: justify !important;
        text-align-last: center !important;
    }
    
    .post-body ul,
    .post-body ol {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        padding-left: 20px !important;
        margin-bottom: 15px !important;
    }
    
    .post-body li {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 8px !important;
        text-align: left !important;
    }
    
    .post-body blockquote {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        padding: 15px !important;
        margin: 20px 0 !important;
        background: #f8f9fa !important;
        border-left: 4px solid #000 !important;
        border-radius: 8px !important;
        font-style: italic !important;
        text-align: center !important;
    }
    
    .post-meta {
        justify-content: center !important;
        gap: 15px !important;
        margin-bottom: 15px !important;
        flex-wrap: wrap !important;
    }
    
    .post-info {
        justify-content: center !important;
        gap: 15px !important;
        flex-wrap: wrap !important;
    }
    
    .post-category {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
        border-radius: 15px !important;
    }
    
    .post-footer {
        margin-top: 30px !important;
        text-align: center !important;
    }
    
    .post-tags {
        margin-bottom: 20px !important;
    }
    
    .tags {
        justify-content: center !important;
        gap: 8px !important;
        flex-wrap: wrap !important;
    }
    
    .tag {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
        border-radius: 15px !important;
    }
    
    .post-share {
        text-align: center !important;
    }
    
    .share-buttons {
        justify-content: center !important;
        gap: 10px !important;
        flex-wrap: wrap !important;
    }
    
    .share-btn {
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
    }
    
    .related-posts {
        margin-top: 30px !important;
    }
    
    .related-post {
        padding: 15px !important;
        border-radius: 8px !important;
        margin-bottom: 15px !important;
    }
    
    .related-post-content h4 {
        font-size: 1rem !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
        text-align: center !important;
    }
    
    .related-post-content time {
        font-size: 0.8rem !important;
        text-align: center !important;
    }
    
    .category-list {
        text-align: center !important;
    }
    
    .category-list a {
        padding: 8px 12px !important;
        font-size: 0.9rem !important;
        border-radius: 6px !important;
        text-align: center !important;
    }
    
    .cta-widget {
        padding: 20px !important;
        border-radius: 8px !important;
        text-align: center !important;
    }
    
    .cta-widget h3 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
        text-align: center !important;
    }
    
    .cta-widget p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .post-content {
        padding: 15px 0 !important;
    }
    
    .post-layout {
        gap: 15px !important;
        padding: 0 10px !important;
    }
    
    .post-main {
        padding: 15px !important;
    }
    
    .post-sidebar {
        padding: 15px !important;
    }
    
    .post-title {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
    }
    
    .post-excerpt {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
        padding: 12px !important;
    }
    
    .post-body {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .post-body h2 {
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
        margin: 20px 0 12px 0 !important;
    }
    
    .post-body h3 {
        font-size: 1.1rem !important;
        line-height: 1.2 !important;
        margin: 18px 0 10px 0 !important;
    }
    
    .post-body h4 {
        font-size: 1rem !important;
        line-height: 1.2 !important;
        margin: 15px 0 8px 0 !important;
    }
    
    .post-body p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
    }
    
    .post-body ul,
    .post-body ol {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        padding-left: 15px !important;
        margin-bottom: 12px !important;
    }
    
    .post-body li {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 6px !important;
    }
    
    .post-body blockquote {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        padding: 12px !important;
        margin: 15px 0 !important;
    }
    
    .post-meta {
        gap: 10px !important;
        margin-bottom: 12px !important;
    }
    
    .post-info {
        gap: 10px !important;
    }
    
    .post-category {
        padding: 5px 10px !important;
        font-size: 0.75rem !important;
    }
    
    .post-footer {
        margin-top: 25px !important;
    }
    
    .post-tags {
        margin-bottom: 15px !important;
    }
    
    .tags {
        gap: 6px !important;
    }
    
    .tag {
        padding: 5px 10px !important;
        font-size: 0.75rem !important;
    }
    
    .share-buttons {
        gap: 8px !important;
    }
    
    .share-btn {
        width: 35px !important;
        height: 35px !important;
    }
    
    .related-post {
        padding: 12px !important;
        margin-bottom: 12px !important;
    }
    
    .related-post-content h4 {
        font-size: 0.9rem !important;
        line-height: 1.2 !important;
        margin-bottom: 6px !important;
    }
    
    .related-post-content time {
        font-size: 0.75rem !important;
    }
    
    .category-list a {
        padding: 6px 10px !important;
        font-size: 0.8rem !important;
    }
    
    .cta-widget {
        padding: 15px !important;
    }
    
    .cta-widget h3 {
        font-size: 1.1rem !important;
        line-height: 1.2 !important;
        margin-bottom: 8px !important;
    }
    
    .cta-widget p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 12px !important;
    }
}

@media (max-width: 320px) {
    .post-content {
        padding: 10px 0 !important;
    }
    
    .post-layout {
        gap: 10px !important;
        padding: 0 8px !important;
    }
    
    .post-main {
        padding: 12px !important;
    }
    
    .post-sidebar {
        padding: 12px !important;
    }
    
    .post-title {
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }
    
    .post-excerpt {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
        padding: 10px !important;
    }
    
    .post-body {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    .post-body h2 {
        font-size: 1.2rem !important;
        line-height: 1.2 !important;
        margin: 18px 0 10px 0 !important;
    }
    
    .post-body h3 {
        font-size: 1rem !important;
        line-height: 1.2 !important;
        margin: 15px 0 8px 0 !important;
    }
    
    .post-body h4 {
        font-size: 0.9rem !important;
        line-height: 1.2 !important;
        margin: 12px 0 6px 0 !important;
    }
    
    .post-body p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
    }
    
    .post-body ul,
    .post-body ol {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        padding-left: 12px !important;
        margin-bottom: 10px !important;
    }
    
    .post-body li {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 5px !important;
    }
    
    .post-body blockquote {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        padding: 10px !important;
        margin: 12px 0 !important;
    }
    
    .post-meta {
        gap: 8px !important;
        margin-bottom: 10px !important;
    }
    
    .post-info {
        gap: 8px !important;
    }
    
    .post-category {
        padding: 4px 8px !important;
        font-size: 0.7rem !important;
    }
    
    .post-footer {
        margin-top: 20px !important;
    }
    
    .post-tags {
        margin-bottom: 12px !important;
    }
    
    .tags {
        gap: 5px !important;
    }
    
    .tag {
        padding: 4px 8px !important;
        font-size: 0.7rem !important;
    }
    
    .share-buttons {
        gap: 6px !important;
    }
    
    .share-btn {
        width: 30px !important;
        height: 30px !important;
    }
    
    .related-post {
        padding: 10px !important;
        margin-bottom: 10px !important;
    }
    
    .related-post-content h4 {
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
        margin-bottom: 5px !important;
    }
    
    .related-post-content time {
        font-size: 0.7rem !important;
    }
    
    .category-list a {
        padding: 5px 8px !important;
        font-size: 0.75rem !important;
    }
    
    .cta-widget {
        padding: 12px !important;
    }
    
    .cta-widget h3 {
        font-size: 1rem !important;
        line-height: 1.2 !important;
        margin-bottom: 6px !important;
    }
    
    .cta-widget p {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }
}

/* Responsive Images in Blog Content */
@media (max-width: 768px) {
    .post-body img {
        max-width: 100% !important;
        height: auto !important;
        border-radius: 6px !important;
        margin: 1rem 0 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }
    
    .post-body iframe {
        width: 100% !important;
        height: 300px !important;
        min-height: 250px !important;
        border-radius: 6px !important;
        margin: 15px 0 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }
    
    .post-body video {
        width: 100% !important;
        height: auto !important;
        border-radius: 6px !important;
        margin: 15px 0 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }
    
    .post-body embed,
    .post-body object {
        width: 100% !important;
        height: 300px !important;
        min-height: 250px !important;
        border-radius: 6px !important;
        margin: 15px 0 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }
    
    .post-body table {
        max-width: 100% !important;
        overflow-x: auto !important;
        display: block !important;
        font-size: 0.9rem !important;
    }
    
    .post-body table th,
    .post-body table td {
        padding: 8px 6px !important;
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    .post-body img {
        border-radius: 4px !important;
        margin: 0.8rem 0 !important;
        box-shadow: 0 1px 5px rgba(0,0,0,0.1) !important;
    }
    
    .post-body iframe {
        width: 100% !important;
        height: 250px !important;
        min-height: 200px !important;
        border-radius: 6px !important;
        margin: 15px 0 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }
    
    .post-body video {
        width: 100% !important;
        height: auto !important;
        border-radius: 6px !important;
        margin: 15px 0 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }
    
    .post-body embed,
    .post-body object {
        width: 100% !important;
        height: 250px !important;
        min-height: 200px !important;
        border-radius: 6px !important;
        margin: 15px 0 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }
    
    .post-body table {
        font-size: 0.8rem !important;
    }
    
    .post-body table th,
    .post-body table td {
        padding: 6px 4px !important;
        font-size: 0.75rem !important;
    }
}

@media (max-width: 320px) {
    .post-body img {
        border-radius: 3px !important;
        margin: 0.6rem 0 !important;
    }
    
    .post-body iframe {
        width: 100% !important;
        height: 200px !important;
        min-height: 150px !important;
        border-radius: 4px !important;
        margin: 10px 0 !important;
        box-shadow: 0 1px 5px rgba(0,0,0,0.1) !important;
    }
    
    .post-body video {
        width: 100% !important;
        height: auto !important;
        border-radius: 4px !important;
        margin: 10px 0 !important;
        box-shadow: 0 1px 5px rgba(0,0,0,0.1) !important;
    }
    
    .post-body embed,
    .post-body object {
        width: 100% !important;
        height: 200px !important;
        min-height: 150px !important;
        border-radius: 4px !important;
        margin: 10px 0 !important;
        box-shadow: 0 1px 5px rgba(0,0,0,0.1) !important;
    }
    
    .post-body table {
        font-size: 0.75rem !important;
    }
    
    .post-body table th,
    .post-body table td {
        padding: 4px 3px !important;
        font-size: 0.7rem !important;
    }
} 

/* Breadcrumb Styles */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #666;
}

.breadcrumb .separator {
    color: #999;
}

.breadcrumb .current {
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.8rem !important;
        gap: 8px !important;
        margin-bottom: 20px !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    .breadcrumb .separator {
        margin: 0 2px !important;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        font-size: 0.75rem !important;
        gap: 6px !important;
        margin-bottom: 15px !important;
    }
    
    .breadcrumb .separator {
        margin: 0 1px !important;
    }
}

@media (max-width: 320px) {
    .breadcrumb {
        font-size: 0.7rem !important;
        gap: 4px !important;
        margin-bottom: 12px !important;
    }
} 

 

/* Blog Preview Page Responsive Styles */
@media (max-width: 768px) {
    .blog-hero {
        padding: 40px 0 !important;
        text-align: center !important;
    }
    
    .blog-hero-content h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
        text-align: center !important;
    }
    
    .blog-hero-content p {
        font-size: 1.1rem !important;
        text-align: center !important;
    }
    
    .blog-content {
        padding: 30px 0 !important;
    }
    
    .blog-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .blog-main {
        order: 1 !important;
    }
    
    .blog-sidebar {
        order: 2 !important;
        position: static !important;
        top: auto !important;
    }
    
    .breadcrumb {
        font-size: 0.9rem !important;
        margin-bottom: 20px !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    .search-results-info {
        text-align: center !important;
        margin-bottom: 25px !important;
        padding: 20px !important;
        background: #f8f9fa !important;
        border-radius: 8px !important;
    }
    
    .search-results-info h3 {
        font-size: 1.3rem !important;
        margin-bottom: 10px !important;
        text-align: center !important;
    }
    
    .search-results-info p {
        font-size: 1rem !important;
        margin-bottom: 15px !important;
        text-align: center !important;
    }
    
    .clear-filters {
        display: inline-block !important;
        padding: 8px 16px !important;
        background: #000 !important;
        color: #fff !important;
        text-decoration: none !important;
        border-radius: 6px !important;
        font-size: 0.9rem !important;
        transition: background 0.3s ease !important;
    }
    
    .clear-filters:hover {
        background: #333 !important;
    }
    
    .blog-categories {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        margin-bottom: 25px !important;
        justify-content: center !important;
    }
    
    .category-filter {
        padding: 8px 16px !important;
        font-size: 0.9rem !important;
        border-radius: 20px !important;
        text-decoration: none !important;
        border: 2px solid #e9ecef !important;
        color: #666 !important;
        transition: all 0.3s ease !important;
        text-align: center !important;
        white-space: nowrap !important;
    }
    
    .category-filter:hover,
    .category-filter.active {
        background: #000 !important;
        color: #fff !important;
        border-color: #000 !important;
    }
    
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .blog-card {
        margin-bottom: 0 !important;
        text-align: center !important;
    }
    
    .blog-image {
        height: 200px !important;
        margin-bottom: 15px !important;
    }
    
    .blog-content {
        padding: 20px !important;
    }
    
    .blog-meta {
        justify-content: center !important;
        margin-bottom: 15px !important;
        flex-wrap: wrap !important;
        gap: 15px !important;
    }
    
    .blog-meta span {
        font-size: 0.85rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
    }
    
    .blog-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }
    
    .blog-card p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
        text-align: center !important;
    }
    
    .read-more {
        display: inline-block !important;
        padding: 10px 20px !important;
        background: #000 !important;
        color: #fff !important;
        text-decoration: none !important;
        border-radius: 6px !important;
        font-size: 0.9rem !important;
        transition: background 0.3s ease !important;
        text-align: center !important;
    }
    
    .read-more:hover {
        background: #333 !important;
    }
    
    .pagination {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        margin-top: 30px !important;
    }
    
    .page-link {
        padding: 8px 12px !important;
        font-size: 0.9rem !important;
        min-width: 40px !important;
        text-align: center !important;
    }
    
    .no-posts {
        text-align: center !important;
        padding: 40px 20px !important;
    }
    
    .no-posts h3 {
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
        text-align: center !important;
    }
    
    .no-posts p {
        font-size: 1rem !important;
        text-align: center !important;
    }
    
    /* Sidebar Styles */
    .sidebar-widget {
        margin-bottom: 30px !important;
        text-align: center !important;
    }
    
    .sidebar-widget h3 {
        font-size: 1.2rem !important;
        margin-bottom: 15px !important;
        text-align: center !important;
    }
    
    .search-form {
        display: flex !important;
        gap: 10px !important;
        margin-bottom: 0 !important;
    }
    
    .search-form input {
        flex: 1 !important;
        padding: 10px 12px !important;
        border: 1px solid #e9ecef !important;
        border-radius: 6px !important;
        font-size: 0.9rem !important;
    }
    
    .search-form button {
        padding: 10px 15px !important;
        background: #000 !important;
        color: #fff !important;
        border: none !important;
        border-radius: 6px !important;
        cursor: pointer !important;
        font-size: 0.9rem !important;
    }
    
    .search-form button:hover {
        background: #333 !important;
    }
    
    .category-list {
        text-align: center !important;
    }
    
    .category-list li {
        margin-bottom: 8px !important;
    }
    
    .category-list a {
        display: block !important;
        padding: 10px 15px !important;
        text-decoration: none !important;
        color: #666 !important;
        border-radius: 6px !important;
        transition: all 0.3s ease !important;
        font-size: 0.9rem !important;
        text-align: center !important;
    }
    
    .category-list a:hover,
    .category-list a.active {
        background: #f8f9fa !important;
        color: #000 !important;
    }
    
    .recent-posts {
        text-align: center !important;
    }
    
    .recent-posts li {
        margin-bottom: 15px !important;
        text-align: center !important;
    }
    
    .recent-posts a {
        display: block !important;
        padding: 10px !important;
        text-decoration: none !important;
        color: #666 !important;
        border-radius: 6px !important;
        transition: all 0.3s ease !important;
        font-size: 0.9rem !important;
        text-align: center !important;
    }
    
    .recent-posts a:hover {
        background: #f8f9fa !important;
        color: #000 !important;
    }
    
    .recent-post-image {
        width: 60px !important;
        height: 60px !important;
        margin: 0 auto 10px !important;
        border-radius: 6px !important;
        overflow: hidden !important;
    }
    
    .recent-post-content h4 {
        font-size: 0.9rem !important;
        margin-bottom: 5px !important;
        text-align: center !important;
    }
    
    .recent-post-date {
        font-size: 0.8rem !important;
        color: #999 !important;
        text-align: center !important;
    }
    
    .tag-cloud {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        justify-content: center !important;
    }
    
    .tag {
        padding: 6px 12px !important;
        background: #f8f9fa !important;
        color: #666 !important;
        border-radius: 15px !important;
        font-size: 0.8rem !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        text-align: center !important;
    }
    
    .tag:hover {
        background: #000 !important;
        color: #fff !important;
    }
}

@media (max-width: 480px) {
    .blog-hero-content h1 {
        font-size: 2rem !important;
    }
    
    .blog-hero-content p {
        font-size: 1rem !important;
    }
    
    .blog-content {
        padding: 20px 0 !important;
    }
    
    .blog-layout {
        gap: 25px !important;
    }
    
    .search-results-info {
        padding: 15px !important;
        margin-bottom: 20px !important;
    }
    
    .search-results-info h3 {
        font-size: 1.2rem !important;
    }
    
    .search-results-info p {
        font-size: 0.9rem !important;
    }
    
    .blog-categories {
        gap: 8px !important;
        margin-bottom: 20px !important;
    }
    
    .category-filter {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
    }
    
    .blog-grid {
        gap: 20px !important;
    }
    
    .blog-image {
        height: 180px !important;
    }
    
    .blog-content {
        padding: 15px !important;
    }
    
    .blog-meta {
        gap: 10px !important;
        margin-bottom: 12px !important;
    }
    
    .blog-meta span {
        font-size: 0.8rem !important;
    }
    
    .blog-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }
    
    .blog-card p {
        font-size: 0.9rem !important;
        margin-bottom: 12px !important;
    }
    
    .read-more {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }
    
    .pagination {
        gap: 6px !important;
        margin-top: 25px !important;
    }
    
    .page-link {
        padding: 6px 10px !important;
        font-size: 0.85rem !important;
        min-width: 35px !important;
    }
    
    .no-posts {
        padding: 30px 15px !important;
    }
    
    .no-posts h3 {
        font-size: 1.3rem !important;
    }
    
    .no-posts p {
        font-size: 0.9rem !important;
    }
    
    .sidebar-widget {
        margin-bottom: 25px !important;
    }
    
    .sidebar-widget h3 {
        font-size: 1.1rem !important;
        margin-bottom: 12px !important;
    }
    
    .search-form input {
        padding: 8px 10px !important;
        font-size: 0.85rem !important;
    }
    
    .search-form button {
        padding: 8px 12px !important;
        font-size: 0.85rem !important;
    }
    
    .category-list a {
        padding: 8px 12px !important;
        font-size: 0.85rem !important;
    }
    
    .recent-posts a {
        padding: 8px !important;
        font-size: 0.85rem !important;
    }
    
    .recent-post-image {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 8px !important;
    }
    
    .recent-post-content h4 {
        font-size: 0.85rem !important;
    }
    
    .recent-post-date {
        font-size: 0.75rem !important;
    }
    
    .tag {
        padding: 5px 10px !important;
        font-size: 0.75rem !important;
    }
}

@media (max-width: 320px) {
    .blog-hero-content h1 {
        font-size: 1.8rem !important;
    }
    
    .blog-hero-content p {
        font-size: 0.9rem !important;
    }
    
    .blog-content {
        padding: 15px 0 !important;
    }
    
    .blog-layout {
        gap: 20px !important;
    }
    
    .search-results-info {
        padding: 12px !important;
        margin-bottom: 15px !important;
    }
    
    .search-results-info h3 {
        font-size: 1.1rem !important;
    }
    
    .search-results-info p {
        font-size: 0.85rem !important;
    }
    
    .blog-categories {
        gap: 6px !important;
        margin-bottom: 15px !important;
    }
    
    .category-filter {
        padding: 5px 10px !important;
        font-size: 0.75rem !important;
    }
    
    .blog-grid {
        gap: 15px !important;
    }
    
    .blog-image {
        height: 160px !important;
    }
    
    .blog-content {
        padding: 12px !important;
    }
    
    .blog-meta {
        gap: 8px !important;
        margin-bottom: 10px !important;
    }
    
    .blog-meta span {
        font-size: 0.75rem !important;
    }
    
    .blog-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
    }
    
    .blog-card p {
        font-size: 0.85rem !important;
        margin-bottom: 10px !important;
    }
    
    .read-more {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
    }
    
    .pagination {
        gap: 4px !important;
        margin-top: 20px !important;
    }
    
    .page-link {
        padding: 5px 8px !important;
        font-size: 0.8rem !important;
        min-width: 30px !important;
    }
    
    .no-posts {
        padding: 25px 10px !important;
    }
    
    .no-posts h3 {
        font-size: 1.2rem !important;
    }
    
    .no-posts p {
        font-size: 0.85rem !important;
    }
    
    .sidebar-widget {
        margin-bottom: 20px !important;
    }
    
    .sidebar-widget h3 {
        font-size: 1rem !important;
        margin-bottom: 10px !important;
    }
    
    .search-form input {
        padding: 6px 8px !important;
        font-size: 0.8rem !important;
    }
    
    .search-form button {
        padding: 6px 10px !important;
        font-size: 0.8rem !important;
    }
    
    .category-list a {
        padding: 6px 10px !important;
        font-size: 0.8rem !important;
    }
    
    .recent-posts a {
        padding: 6px !important;
        font-size: 0.8rem !important;
    }
    
    .recent-post-image {
        width: 45px !important;
        height: 45px !important;
        margin-bottom: 6px !important;
    }
    
    .recent-post-content h4 {
        font-size: 0.8rem !important;
    }
    
    .recent-post-date {
        font-size: 0.7rem !important;
    }
    
    .tag {
        padding: 4px 8px !important;
        font-size: 0.7rem !important;
    }
    
    .share-btn {
        width: 30px !important;
        height: 30px !important;
    }
    
    .related-post-image {
        height: 100px !important;
    }
    
    .related-post {
        padding: 10px !important;
    }
    
    .related-post-content h4 {
        font-size: 0.85rem !important;
    }
    
    .related-post-content time {
        font-size: 0.7rem !important;
    }
    
    .category-list a {
        padding: 6px 8px !important;
        font-size: 0.8rem !important;
    }
    
    .cta-widget {
        padding: 12px !important;
    }
    
    .cta-widget h3 {
        font-size: 1rem !important;
    }
    
    .cta-widget p {
        font-size: 0.8rem !important;
    }
    
    .sidebar-widget h3 {
        font-size: 1.1rem !important;
        margin-bottom: 15px !important;
    }
} 

/* Additional Mobile Optimizations for Blog Preview */
@media (max-width: 480px) {
    .blog-hero {
        padding: 30px 0 !important;
    }
    
    .blog-hero-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }
    
    .blog-hero-content p {
        font-size: 0.95rem !important;
    }
    
    .blog-content {
        padding: 20px 0 !important;
    }
    
    .container {
        padding: 0 15px !important;
    }
    
    .blog-layout {
        gap: 20px !important;
    }
    
    .breadcrumb {
        font-size: 0.8rem !important;
        margin-bottom: 15px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .search-results-info {
        padding: 15px !important;
        margin-bottom: 15px !important;
    }
    
    .search-results-info h3 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
    }
    
    .search-results-info p {
        font-size: 0.85rem !important;
        margin-bottom: 12px !important;
    }
    
    .clear-filters {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
    }
    
    .blog-categories {
        gap: 6px !important;
        margin-bottom: 15px !important;
    }
    
    .category-filter {
        padding: 5px 10px !important;
        font-size: 0.75rem !important;
        border-radius: 15px !important;
    }
    
    .blog-grid {
        gap: 15px !important;
    }
    
    .blog-card {
        border-radius: 8px !important;
        overflow: hidden !important;
    }
    
    .blog-image {
        height: 160px !important;
    }
    
    .blog-content {
        padding: 12px !important;
    }
    
    .blog-meta {
        gap: 8px !important;
        margin-bottom: 10px !important;
    }
    
    .blog-meta span {
        font-size: 0.75rem !important;
    }
    
    .blog-meta i {
        font-size: 0.7rem !important;
    }
    
    .blog-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }
    
    .blog-card p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 10px !important;
    }
    
    .read-more {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
        border-radius: 4px !important;
    }
    
    .pagination {
        gap: 4px !important;
        margin-top: 20px !important;
    }
    
    .page-link {
        padding: 5px 8px !important;
        font-size: 0.8rem !important;
        min-width: 32px !important;
        border-radius: 4px !important;
    }
    
    .no-posts {
        padding: 25px 10px !important;
    }
    
    .no-posts h3 {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }
    
    .no-posts p {
        font-size: 0.85rem !important;
    }
    
    /* Sidebar Mobile Optimizations */
    .sidebar-widget {
        margin-bottom: 20px !important;
        padding: 15px !important;
        border-radius: 8px !important;
        background: #f8f9fa !important;
    }
    
    .sidebar-widget h3 {
        font-size: 1rem !important;
        margin-bottom: 10px !important;
    }
    
    .search-form {
        gap: 8px !important;
    }
    
    .search-form input {
        padding: 6px 8px !important;
        font-size: 0.8rem !important;
        border-radius: 4px !important;
    }
    
    .search-form button {
        padding: 6px 10px !important;
        font-size: 0.8rem !important;
        border-radius: 4px !important;
    }
    
    .category-list li {
        margin-bottom: 6px !important;
    }
    
    .category-list a {
        padding: 6px 10px !important;
        font-size: 0.8rem !important;
        border-radius: 4px !important;
    }
    
    .recent-posts li {
        margin-bottom: 10px !important;
    }
    
    .recent-posts a {
        padding: 8px !important;
        font-size: 0.8rem !important;
        border-radius: 4px !important;
    }
    
    .recent-post-image {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 6px !important;
        border-radius: 4px !important;
    }
    
    .recent-post-content h4 {
        font-size: 0.8rem !important;
        margin-bottom: 3px !important;
    }
    
    .recent-post-date {
        font-size: 0.7rem !important;
    }
    
    .tag-cloud {
        gap: 6px !important;
    }
    
    .tag {
        padding: 4px 8px !important;
        font-size: 0.7rem !important;
        border-radius: 12px !important;
    }
}

@media (max-width: 320px) {
    .blog-hero {
        padding: 25px 0 !important;
    }
    
    .blog-hero-content h1 {
        font-size: 1.6rem !important;
    }
    
    .blog-hero-content p {
        font-size: 0.9rem !important;
    }
    
    .blog-content {
        padding: 15px 0 !important;
    }
    
    .container {
        padding: 0 10px !important;
    }
    
    .blog-layout {
        gap: 15px !important;
    }
    
    .breadcrumb {
        font-size: 0.75rem !important;
        margin-bottom: 12px !important;
        gap: 4px !important;
    }
    
    .search-results-info {
        padding: 12px !important;
        margin-bottom: 12px !important;
    }
    
    .search-results-info h3 {
        font-size: 1rem !important;
        margin-bottom: 6px !important;
    }
    
    .search-results-info p {
        font-size: 0.8rem !important;
        margin-bottom: 10px !important;
    }
    
    .clear-filters {
        padding: 5px 10px !important;
        font-size: 0.75rem !important;
    }
    
    .blog-categories {
        gap: 4px !important;
        margin-bottom: 12px !important;
    }
    
    .category-filter {
        padding: 4px 8px !important;
        font-size: 0.7rem !important;
        border-radius: 12px !important;
    }
    
    .blog-grid {
        gap: 12px !important;
    }
    
    .blog-image {
        height: 140px !important;
    }
    
    .blog-content {
        padding: 10px !important;
    }
    
    .blog-meta {
        gap: 6px !important;
        margin-bottom: 8px !important;
    }
    
    .blog-meta span {
        font-size: 0.7rem !important;
    }
    
    .blog-meta i {
        font-size: 0.65rem !important;
    }
    
    .blog-card h3 {
        font-size: 1rem !important;
        margin-bottom: 6px !important;
        line-height: 1.2 !important;
    }
    
    .blog-card p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        margin-bottom: 8px !important;
    }
    
    .read-more {
        padding: 5px 10px !important;
        font-size: 0.75rem !important;
        border-radius: 3px !important;
    }
    
    .pagination {
        gap: 3px !important;
        margin-top: 15px !important;
    }
    
    .page-link {
        padding: 4px 6px !important;
        font-size: 0.75rem !important;
        min-width: 28px !important;
        border-radius: 3px !important;
    }
    
    .no-posts {
        padding: 20px 8px !important;
    }
    
    .no-posts h3 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
    }
    
    .no-posts p {
        font-size: 0.8rem !important;
    }
    
    /* Sidebar Very Small Screen */
    .sidebar-widget {
        margin-bottom: 15px !important;
        padding: 12px !important;
        border-radius: 6px !important;
    }
    
    .sidebar-widget h3 {
        font-size: 0.9rem !important;
        margin-bottom: 8px !important;
    }
    
    .search-form {
        gap: 6px !important;
    }
    
    .search-form input {
        padding: 5px 6px !important;
        font-size: 0.75rem !important;
        border-radius: 3px !important;
    }
    
    .search-form button {
        padding: 5px 8px !important;
        font-size: 0.75rem !important;
        border-radius: 3px !important;
    }
    
    .category-list li {
        margin-bottom: 4px !important;
    }
    
    .category-list a {
        padding: 5px 8px !important;
        font-size: 0.75rem !important;
        border-radius: 3px !important;
    }
    
    .recent-posts li {
        margin-bottom: 8px !important;
    }
    
    .recent-posts a {
        padding: 6px !important;
        font-size: 0.75rem !important;
        border-radius: 3px !important;
    }
    
    .recent-post-image {
        width: 35px !important;
        height: 35px !important;
        margin-bottom: 4px !important;
        border-radius: 3px !important;
    }
    
    .recent-post-content h4 {
        font-size: 0.75rem !important;
        margin-bottom: 2px !important;
    }
    
    .recent-post-date {
        font-size: 0.65rem !important;
    }
    
    .tag-cloud {
        gap: 4px !important;
    }
    
    .tag {
        padding: 3px 6px !important;
        font-size: 0.65rem !important;
        border-radius: 10px !important;
    }
}

/* Fix horizontal scrolling issues */
@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .container {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .blog-content {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .blog-layout {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .blog-main {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .blog-sidebar {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .blog-grid {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .blog-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .blog-content {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .blog-card h3 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .blog-card p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .blog-categories {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        flex-wrap: wrap !important;
    }
    
    .category-filter {
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
    
    .search-results-info {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .search-results-info h3 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .search-results-info p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .breadcrumb {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        flex-wrap: wrap !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .pagination {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        flex-wrap: wrap !important;
    }
    
    .sidebar-widget {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .search-form {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .search-form input {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .category-list {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .category-list a {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
    
    .recent-posts {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .recent-posts a {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
    
    .recent-post-content h4 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .tag-cloud {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .tag {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
    
    .no-posts {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .no-posts h3 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .no-posts p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px !important;
    }
    
    .blog-categories {
        gap: 5px !important;
    }
    
    .category-filter {
        font-size: 0.7rem !important;
        padding: 4px 8px !important;
    }
    
    .blog-card h3 {
        font-size: 1rem !important;
        line-height: 1.2 !important;
    }
    
    .blog-card p {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
    }
    
    .search-results-info h3 {
        font-size: 1rem !important;
        line-height: 1.2 !important;
    }
    
    .search-results-info p {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
    }
    
    .sidebar-widget h3 {
        font-size: 0.9rem !important;
        line-height: 1.2 !important;
    }
    
    .category-list a {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
    }
    
    .recent-post-content h4 {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
    }
    
    .tag {
        font-size: 0.65rem !important;
        line-height: 1.2 !important;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 8px !important;
    }
    
    .blog-categories {
        gap: 3px !important;
    }
    
    .category-filter {
        font-size: 0.65rem !important;
        padding: 3px 6px !important;
    }
    
    .blog-card h3 {
        font-size: 0.9rem !important;
        line-height: 1.1 !important;
    }
    
    .blog-card p {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
    }
    
    .search-results-info h3 {
        font-size: 0.9rem !important;
        line-height: 1.1 !important;
    }
    
    .search-results-info p {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
    }
    
    .sidebar-widget h3 {
        font-size: 0.8rem !important;
        line-height: 1.1 !important;
    }
    
    .category-list a {
        font-size: 0.7rem !important;
        line-height: 1.1 !important;
    }
    
    .recent-post-content h4 {
        font-size: 0.7rem !important;
        line-height: 1.1 !important;
    }
    
    .tag {
        font-size: 0.6rem !important;
        line-height: 1.1 !important;
    }
}

/* Fix horizontal scrolling for single blog post page */
@media (max-width: 768px) {
    .post-content {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .post-layout {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .post-main {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .post-sidebar {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .post-header {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .post-title {
        width: 100% !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        line-height: 1.2 !important;
    }
    
    .post-excerpt {
        width: 100% !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        line-height: 1.4 !important;
    }
    
    .post-body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .post-body h2,
    .post-body h3,
    .post-body h4 {
        width: 100% !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        line-height: 1.2 !important;
    }
    
    .post-body p {
        width: 100% !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        line-height: 1.4 !important;
    }
    
    .post-body ul,
    .post-body ol {
        width: 100% !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        padding-left: 20px !important;
    }
    
    .post-body li {
        width: 100% !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        line-height: 1.4 !important;
    }
    
    .post-body blockquote {
        width: 100% !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        line-height: 1.4 !important;
        padding: 15px !important;
        margin: 15px 0 !important;
        box-sizing: border-box !important;
    }
    
    .post-body img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    
    .post-body a {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .post-meta {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        flex-wrap: wrap !important;
    }
    
    .post-info {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        flex-wrap: wrap !important;
    }
    
    .post-category {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
    
    .post-footer {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .post-tags {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .tags {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        flex-wrap: wrap !important;
    }
    
    .tag {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
    
    .post-share {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .share-buttons {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        flex-wrap: wrap !important;
    }
    
    .share-btn {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
    
    .related-posts {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .related-post {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .related-post-content h4 {
        width: 100% !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        line-height: 1.2 !important;
    }
    
    .related-post-content time {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
    
    .category-list {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .category-list a {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
    
    .cta-widget {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .cta-widget h3 {
        width: 100% !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        line-height: 1.2 !important;
    }
    
    .cta-widget p {
        width: 100% !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        line-height: 1.4 !important;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 1.3rem !important;
        line-height: 1.1 !important;
    }
    
    .post-excerpt {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
    }
    
    .post-body {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
    
    .post-body h2 {
        font-size: 1.2rem !important;
        line-height: 1.1 !important;
    }
    
    .post-body h3 {
        font-size: 1.1rem !important;
        line-height: 1.1 !important;
    }
    
    .post-body h4 {
        font-size: 1rem !important;
        line-height: 1.1 !important;
    }
    
    .post-body p {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
    }
    
    .post-body ul,
    .post-body ol {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        padding-left: 15px !important;
    }
    
    .post-body li {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
    }
    
    .post-body blockquote {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        padding: 12px !important;
        margin: 12px 0 !important;
    }
    
    .related-post-content h4 {
        font-size: 0.9rem !important;
        line-height: 1.1 !important;
    }
    
    .cta-widget h3 {
        font-size: 1rem !important;
        line-height: 1.1 !important;
    }
    
    .cta-widget p {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
    }
}

@media (max-width: 320px) {
    .post-title {
        font-size: 1.1rem !important;
        line-height: 1.1 !important;
    }
    
    .post-excerpt {
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
    }
    
    .post-body {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
    }
    
    .post-body h2 {
        font-size: 1.1rem !important;
        line-height: 1.1 !important;
    }
    
    .post-body h3 {
        font-size: 1rem !important;
        line-height: 1.1 !important;
    }
    
    .post-body h4 {
        font-size: 0.9rem !important;
        line-height: 1.1 !important;
    }
    
    .post-body p {
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
    }
    
    .post-body ul,
    .post-body ol {
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
        padding-left: 12px !important;
    }
    
    .post-body li {
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
    }
    
    .post-body blockquote {
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
        padding: 10px !important;
        margin: 10px 0 !important;
    }
    
    .related-post-content h4 {
        font-size: 0.85rem !important;
        line-height: 1.1 !important;
    }
    
    .cta-widget h3 {
        font-size: 0.9rem !important;
        line-height: 1.1 !important;
    }
    
    .cta-widget p {
        font-size: 0.8rem !important;
        line-height: 1.2 !important;
    }
}