/* =====================================================
   Legnotre Zsalurendszerek - Responsive CSS
   Version: Full-width responsive design
   ===================================================== */

/* ========== Tablet Landscape (max-width: 1024px) ========== */
@media screen and (max-width: 1024px) {
    /* Container padding csökkentése */
    .container {
        padding: 0 var(--spacing-md);
    }
    
    /* Navigation */
    .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .header-phone-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    /* Hero adjustments */
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-content h1 { 
        font-size: 2.2rem; 
    }
    .hero-content h2 { 
        font-size: 1.6rem; 
    }

    /* Product grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Offers - még mindig 2x2 */
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .offer-card-top {
        padding: 25px;
        flex-direction: column;
        text-align: center;
    }
    
    .offer-image {
        width: 130px;
        height: 130px;
        margin-bottom: 20px;
    }
    
    .offer-info h3 {
        font-size: 1.4rem;
    }
    
    .offer-info .offer-desc {
        font-size: 0.95rem;
    }
    
    .offer-price-bar {
        padding: 18px;
    }
    
    .offer-price {
        font-size: 1.6rem;
    }
    
    .package-option {
        padding: 20px;
    }
    
    .package-option h4 {
        font-size: 0.95rem;
    }
    
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Contact wrapper */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Benefits grid */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Testimonials grid */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Blog grid */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Why Legnotre Detailed */
    .legnotre-info-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .company-solutions-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* FAQ Container */
    .faq-container {
        max-width: 90%;
    }
}

/* ========== Tablet (max-width: 768px) ========== */
@media screen and (max-width: 768px) {
    /* Reset font size for smaller screens */
    html {
        font-size: 16px;
    }
    
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.1rem; }
    p { font-size: 1rem; }
    
    /* Header */
    .header-container {
        padding: 0.75rem 0;
        gap: 1rem;
    }
    
    .logo {
        margin-left: -0.5rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    /* Mobile Navigation */
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: 2px 0 20px rgba(0,0,0,0.2);
        z-index: 1000;
        transition: left 0.3s ease;
        overflow-y: auto;
        padding: 60px 0 20px;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-item {
        border-bottom: 1px solid #eee;
        position: relative;
    }
    
    .nav-link {
        padding: 1rem 20px;
        display: block;
        font-size: 1rem;
        text-align: center;
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* ========== Mobile Dropdown Menu ========== */
    .nav-item.has-dropdown {
        position: relative;
    }
    
    .nav-item.has-dropdown .nav-link {
        display: block;
        text-align: center;
        padding-right: 45px;
    }
    
    /* Desktop arrow elrejtése mobilon */
    .dropdown-arrow.desktop-only {
        display: none;
    }
    
    /* Dropdown toggle gomb - mobilon látható, jobb szélen */
    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 0;
        top: 0;
        width: 45px;
        height: 100%;
        background: #f5f5f5;
        border: none;
        border-left: 1px solid #e0e0e0;
        cursor: pointer;
        transition: background 0.2s ease;
    }
    
    .dropdown-toggle:hover,
    .dropdown-toggle:focus {
        background: #e8e8e8;
    }
    
    .dropdown-toggle .dropdown-arrow {
        margin: 0;
        transition: transform 0.3s ease;
        fill: var(--text-primary);
    }
    
    /* AKTÍV ÁLLAPOT - ÁTLÁTSZÓ HÁTTÉR, NINCS CSÍK! */
    .nav-item.has-dropdown.active .dropdown-toggle {
        background: transparent;
        border-left: none;
    }
    
    .nav-item.has-dropdown.active .dropdown-toggle .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    /* Dropdown menu mobilon */
    .dropdown-menu {
        position: static;
        transform: none;
        min-width: 100%;
        background: #f9f9f9;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.3s ease;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .nav-item.has-dropdown.active .dropdown-menu {
        max-height: 400px;
    }
    
    .dropdown-menu li {
        margin: 0;
    }
    
    .dropdown-menu a {
        padding: 14px 20px 14px 40px;
        font-size: 0.95rem;
        border-bottom: 1px solid #e8e8e8;
        display: block;
        color: var(--text-primary);
        text-align: center;
    }
    
    .dropdown-menu a:hover {
        background: #eee;
        color: var(--legnotre-red);
    }
    
    .dropdown-menu li:last-child a {
        border-bottom: none;
    }
    
    /* Hide header CTA on mobile */
    .header-cta {
        display: none;
    }
    
    /* Show hamburger menu */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active .hamburger {
        background: transparent;
    }
    
    .mobile-menu-toggle.active .hamburger::before {
        top: 0;
        transform: rotate(45deg);
    }
    
    .mobile-menu-toggle.active .hamburger::after {
        top: 0;
        transform: rotate(-45deg);
    }
    
    /* Mobile phone button - bal alsó sarok */
    .mobile-phone-button {
        display: flex;
        position: fixed;
        bottom: 20px;
        left: 20px;
        width: 60px;
        height: 60px;
        background: var(--legnotre-red);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(237, 29, 35, 0.4);
        z-index: 999;
        animation: pulse 2s infinite;
        text-decoration: none;
    }
    
    .mobile-phone-button svg {
        width: 24px;
        height: 24px;
        color: white;
        fill: white;
    }
    
    @keyframes pulse {
        0% {
            transform: scale(1);
            box-shadow: 0 4px 12px rgba(237, 29, 35, 0.4);
        }
        50% {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(237, 29, 35, 0.6);
        }
        100% {
            transform: scale(1);
            box-shadow: 0 4px 12px rgba(237, 29, 35, 0.4);
        }
    }
    
    /* Hero */
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-content h1 { 
        font-size: 1.8rem; 
        margin-bottom: 1rem;
    }
    .hero-content h2 { 
        font-size: 1.4rem; 
        margin-bottom: 0.75rem;
    }
    .hero-content h3 { 
        font-size: 1.1rem; 
    }

    /* Trust bar */
    .trust-bar {
        padding: 15px 0;
    }
    
    .trust-items {
        font-size: 0.9rem;
        gap: 15px;
    }

    /* Product grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
    
    .product-item h4 {
        font-size: 1rem;
    }

    /* Section spacing */
    .product-showcase,
    .best-offers,
    .contact-section,
    .testimonials,
    .why-legnotre,
    .why-legnotre-detailed,
    .blog-section,
    .faq-section {
        padding: 50px 0;
    }

    /* Section titles */
    .section-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    /* Offers */
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .offer-card-top {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    
    .offer-image {
        margin: 0 auto;
        width: 120px;
        height: 120px;
    }
    
    .offer-info h3 {
        font-size: 1.3rem;
    }
    
    .offer-info .offer-desc {
        font-size: 0.95rem;
    }
    
    .offer-price-bar {
        padding: 15px;
    }
    
    .offer-price {
        font-size: 1.5rem;
    }
    
    .offer-packages {
        grid-template-columns: 1fr;
    }
    
    .package-option {
        padding: 15px;
    }
    
    .package-option:first-child {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .package-option h4 {
        font-size: 0.9rem;
        min-height: auto;
    }
    
    .btn-secondary {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .special-badge {
        right: -25px;
        font-size: 0.7rem;
        padding: 4px 35px;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info h2 {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }
    
    .contact-info p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .contact-details {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .contact-item {
        font-size: 0.95rem;
    }
    
    .contact-item svg {
        width: 18px;
        height: 18px;
    }
    
    /* Hide map on mobile */
    .contact-map {
        display: none;
    }
    
    .contact-form {
        padding: 20px;
        gap: 15px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .captcha-wrapper {
        flex-direction: column;
        padding: 12px;
        gap: 10px;
    }
    
    .privacy-checkbox label {
        font-size: 0.85rem;
    }
    
    .btn-primary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-author h4 {
        font-size: 0.95rem;
    }
    
    .testimonial-author span {
        font-size: 0.85rem;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .benefit-item {
        padding: 15px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .benefit-item h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
    }

    /* Blog */
    .blog-section .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-card {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    
    .blog-image {
        width: 150px;
        height: 120px;
        flex-shrink: 0;
    }
    
    .blog-content {
        padding: 15px;
    }
    
    .blog-meta {
        font-size: 0.8rem;
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .blog-content h3 {
        font-size: 1.05rem;
        min-height: auto;
        margin-bottom: 8px;
    }
    
    .blog-content p {
        font-size: 0.85rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 10px;
    }
    
    .blog-link {
        font-size: 0.85rem;
    }

    /* Why Legnotre Detailed */
    .why-legnotre-detailed .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .legnotre-info-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .legnotre-text h3 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .legnotre-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .company-solutions-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-company h3,
    .solutions-section h3 {
        font-size: 1.35rem;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .about-company p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    
    .about-company .btn-primary {
        display: block;
        text-align: center;
        margin: 15px auto 0;
        width: 100%;
        max-width: 300px;
    }
    
    .solutions-section h3 {
        margin-bottom: 20px;
    }
    
    .solution-cards {
        gap: 15px;
    }
    
    .solution-card {
        padding: 15px;
        gap: 15px;
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
    }
    
    .solution-content h4 {
        font-size: 1.05rem;
        margin-bottom: 5px;
    }
    
    .solution-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* FAQ */
    .faq-section .section-title {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .faq-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .faq-container {
        max-width: 100%;
    }
    
    .faq-category {
        margin-bottom: 30px;
    }
    
    .faq-category-title {
        font-size: 1.3rem;
        gap: 10px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .faq-category-title svg {
        width: 22px;
        height: 22px;
    }
    
    .faq-items {
        gap: 10px;
    }
    
    .faq-question {
        padding: 15px 18px;
        font-size: 0.95rem;
    }
    
    .faq-question span {
        padding-right: 15px;
    }
    
    .faq-icon {
        width: 18px;
        height: 18px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 18px 18px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .faq-cta {
        margin-top: 40px;
        padding: 35px 20px;
    }
    
    .faq-cta h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .faq-cta p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .faq-cta-buttons {
        gap: 12px;
    }
    
    .faq-cta-buttons .btn-primary,
    .faq-cta-buttons .btn-secondary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .faq-cta-buttons .btn-primary svg {
        width: 16px;
        height: 16px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .footer-column h3,
    .footer-column h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .footer-column p,
    .footer-column ul li,
    .footer-column address {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 20px;
        font-size: 0.85rem;
    }
}

/* ========== Mobile (max-width: 480px) ========== */
@media screen and (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 0.75rem;
    }
    
    /* Typography */
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.125rem; }
    h4 { font-size: 1rem; }
    p { font-size: 0.95rem; }
    
    /* Header */
    .logo img {
        height: 40px;
    }

    /* Hero */
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-content h1 { 
        font-size: 1.6rem; 
        margin-bottom: 0.75rem;
    }
    .hero-content h2 { 
        font-size: 1.25rem; 
        margin-bottom: 0.5rem;
    }
    .hero-content h3 { 
        font-size: 1rem; 
    }

    /* Trust bar */
    .trust-items {
        flex-direction: column;
        gap: 10px;
    }
    
    .separator {
        display: none;
    }

    /* Product grid */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-item h4 {
        font-size: 1rem;
    }

    /* Section spacing */
    .product-showcase,
    .best-offers,
    .contact-section,
    .testimonials,
    .why-legnotre,
    .why-legnotre-detailed,
    .blog-section,
    .faq-section {
        padding: 40px 0;
    }

    /* Section titles */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 8px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    /* Offers */
    .offer-card-top {
        padding: 18px;
        gap: 15px;
    }
    
    .offer-image {
        width: 90px;
        height: 90px;
        margin-bottom: 15px;
    }
    
    .offer-info h3 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .offer-info .offer-desc {
        font-size: 0.85rem;
    }
    
    .offer-price-bar {
        padding: 12px;
    }
    
    .offer-price {
        font-size: 1.4rem;
    }
    
    .package-option {
        padding: 12px;
    }
    
    .package-option h4 {
        font-size: 0.85rem;
    }
    
    .btn-secondary {
        padding: 7px 16px;
        font-size: 0.8rem;
    }

    /* Contact */
    .contact-info h2 {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 18px;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 18px;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .testimonial-author img {
        width: 45px;
        height: 45px;
    }
    
    .testimonial-author h4 {
        font-size: 0.9rem;
    }
    
    .testimonial-author span {
        font-size: 0.8rem;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-icon {
        width: 55px;
        height: 55px;
    }
    
    .benefit-item h3 {
        font-size: 1.05rem;
    }
    
    .benefit-item p {
        font-size: 0.85rem;
    }

    /* Blog */
    .blog-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 25px;
    }
    
    .blog-card {
        flex-direction: column;
    }
    
    .blog-image {
        width: 100%;
        height: 180px;
    }
    
    .blog-content {
        padding: 15px;
    }
    
    .blog-meta {
        font-size: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .blog-content h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .blog-content p {
        font-size: 0.85rem;
        -webkit-line-clamp: 3;
    }
    
    .blog-link {
        font-size: 0.85rem;
    }

    /* Why Legnotre Detailed */
    .why-legnotre-detailed .section-title {
        font-size: 1.75rem;
        margin-bottom: 25px;
    }
    
    .legnotre-info-wrapper {
        margin-bottom: 35px;
    }
    
    .legnotre-text h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .legnotre-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .video-wrapper {
        padding-bottom: 56.25%;
    }
    
    .about-company h3,
    .solutions-section h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .about-company p {
        font-size: 0.85rem;
    }
    
    .about-company .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .solution-card {
        flex-direction: column;
        text-align: center;
        padding: 18px;
        gap: 12px;
    }
    
    .solution-icon {
        width: 65px;
        height: 65px;
        margin: 0 auto;
    }
    
    .solution-content h4 {
        font-size: 1rem;
    }
    
    .solution-content p {
        font-size: 0.8rem;
    }

    /* FAQ */
    .faq-section .section-title {
        font-size: 1.75rem;
    }
    
    .faq-section .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .faq-category {
        margin-bottom: 25px;
    }
    
    .faq-category-title {
        font-size: 1.15rem;
        gap: 8px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .faq-category-title svg {
        width: 20px;
        height: 20px;
    }
    
    .faq-items {
        gap: 8px;
    }
    
    .faq-question {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .faq-question span {
        padding-right: 10px;
    }
    
    .faq-icon {
        width: 16px;
        height: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .faq-cta {
        margin-top: 30px;
        padding: 30px 15px;
    }
    
    .faq-cta h3 {
        font-size: 1.3rem;
    }
    
    .faq-cta p {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .faq-cta-buttons .btn-primary,
    .faq-cta-buttons .btn-secondary {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-top {
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .footer-column h3,
    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .footer-column p,
    .footer-column ul li,
    .footer-column address {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding-top: 15px;
        font-size: 0.8rem;
    }
    
    /* Mobile phone button */
    .mobile-phone-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        left: 15px;
    }
    
    .mobile-phone-button svg {
        width: 20px;
        height: 20px;
    }
    
    /* Dropdown toggle kisebb képernyőn */
    .dropdown-toggle {
        width: 45px;
    }
}

/* ========== Small Mobile (max-width: 320px) ========== */
@media screen and (max-width: 320px) {
    /* Typography */
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1rem; }
    p { font-size: 0.9rem; }
    
    /* Hero */
    .hero-content h1 { 
        font-size: 1.4rem; 
    }
    .hero-content h2 { 
        font-size: 1.1rem; 
    }
    .hero-content h3 { 
        font-size: 0.9rem; 
    }
    
    /* Sections */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Blog */
    .blog-section .section-title {
        font-size: 1.5rem;
    }
    
    .blog-image {
        height: 150px;
    }
    
    .blog-content {
        padding: 12px;
    }
    
    .blog-meta {
        font-size: 0.7rem;
    }
    
    .blog-content h3 {
        font-size: 0.95rem;
    }
    
    .blog-content p {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }
    
    .blog-link {
        font-size: 0.8rem;
    }
    
    /* Why Legnotre Detailed */
    .why-legnotre-detailed .section-title {
        font-size: 1.5rem;
    }
    
    .legnotre-text h3 {
        font-size: 1.1rem;
    }
    
    .legnotre-text p {
        font-size: 0.85rem;
    }
    
    .about-company h3,
    .solutions-section h3 {
        font-size: 1.1rem;
    }
    
    .about-company p {
        font-size: 0.8rem;
    }
    
    .solution-content h4 {
        font-size: 0.95rem;
    }
    
    .solution-content p {
        font-size: 0.75rem;
    }
    
    /* FAQ */
    .faq-section .section-title {
        font-size: 1.5rem;
    }
    
    .faq-section .section-subtitle {
        font-size: 0.85rem;
    }
    
    .faq-category-title {
        font-size: 1rem;
    }
    
    .faq-question {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
    
    .faq-answer p {
        font-size: 0.8rem;
    }
    
    .faq-cta h3 {
        font-size: 1.15rem;
    }
    
    .faq-cta p {
        font-size: 0.85rem;
    }
    
    .faq-cta-buttons .btn-primary,
    .faq-cta-buttons .btn-secondary {
        font-size: 0.85rem;
        padding: 9px 18px;
    }
    
    /* Footer */
    .footer-column h3,
    .footer-column h4 {
        font-size: 1rem;
    }
    
    .footer-column p,
    .footer-column ul li {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
    }
    
    /* Mobile phone button */
    .mobile-phone-button {
        width: 45px;
        height: 45px;
        bottom: 12px;
        left: 12px;
    }
    
    .mobile-phone-button svg {
        width: 18px;
        height: 18px;
    }
    
    /* Dropdown toggle */
    .dropdown-toggle {
        width: 40px;
    }
}