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

:root {
    --primary-color: #dc3545;
    --secondary-color: #6c757d;
    --bg-light: #f5f5f5;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
}

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

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

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

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    gap: 30px;
    flex-wrap: nowrap;
    position: relative;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
    max-width: calc(100% - 250px);
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.logo-link:hover {
    opacity: 0.8;
}

.site-logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 24px;
    margin: 0;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s;
    position: relative;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 1;
}

.nav-link:hover {
    background: rgba(220, 53, 69, 0.1);
    color: var(--primary-color);
}

.nav-link:active,
.nav-link.active {
    background: var(--primary-color);
    color: white;
}

/* Header Contact Buttons - Modern Pill Style */
.header-contacts {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
    margin-left: 10px;
}

.modern-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.whatsapp-modern {
    background: linear-gradient(135deg, #25D366 0%, #1fa855 100%);
    color: white;
}

.whatsapp-modern:hover {
    background: linear-gradient(135deg, #1fa855 0%, #25D366 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.customer-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c82333 100%);
    color: white;
}

.customer-modern:hover {
    background: linear-gradient(135deg, #c82333 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.btn-text {
    white-space: nowrap;
}

.btn-chevron {
    font-size: 10px;
    opacity: 0.8;
    transition: transform 0.3s;
}

.modern-contact-btn:hover .btn-chevron {
    transform: translateY(2px);
}

@media (max-width: 1200px) {
    .nav-link {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .modern-contact-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .btn-text {
        display: none;
    }
    
    .modern-contact-btn .btn-chevron {
        display: none;
    }
}

@media (max-width: 968px) {
    .header .container {
        flex-wrap: wrap;
    }
    
    .header-right {
        width: 100%;
        justify-content: space-between;
        order: 3;
    }
    
    .nav {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .header-contacts {
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .nav-link {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .modern-contact-btn {
        padding: 10px 18px;
        font-size: 13px;
        min-width: 120px;
    }
    
    .btn-chevron {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="30" cy="30" r="2"/></g></svg>');
    opacity: 0.5;
}

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

.hero-label {
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 30px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    color: var(--text-dark);
    margin: 15px 0 25px 0;
    font-weight: 800;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin: 12px 0;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary-hero {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.3);
}

.btn-primary-hero:hover {
    background: #c82333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.btn-secondary-hero {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary-hero:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
}

.hero-graphic {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    text-align: center;
}

.insurance-icon {
    font-size: 120px;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c82333 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.badge-text {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.badge-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

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

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

/* Products Section */
.products-section {
    padding: 60px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.product-image {
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-card h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 18px;
    min-height: 50px;
}

.btn-quote {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.btn-quote:hover {
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
}

/* Companies Section */
.companies-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 10px;
    position: relative;
    padding: 0 50px;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.section-title::before {
    left: 0;
}

.section-title::after {
    right: 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 40px;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.company-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    font-weight: 600;
    color: var(--text-dark);
}

.company-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* Blog Section */
.blog-section {
    padding: 60px 0;
    background: var(--white);
}

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

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.blog-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
    font-size: 18px;
}

.blog-card p {
    padding: 0 20px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.blog-link {
    display: inline-block;
    padding: 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.pagination-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
}

.dot.active {
    background: var(--primary-color);
}

.all-posts-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Support & FAQ Section */
.support-faq-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.support-faq-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.support-section {
    max-width: 100%;
}

.support-section h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 15px;
}

.faq-section {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.02) 0%, rgba(220, 53, 69, 0.05) 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-section h2 {
    color: var(--primary-color);
    font-size: 34px;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.support-section p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.6;
}

.support-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.support-btn {
    background: #c82333;
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background 0.3s;
}

.support-btn:hover {
    background: #a71e2a;
}

.support-btn.whatsapp {
    background: #25D366;
}

.support-btn.whatsapp:hover {
    background: #1fa855;
}

.support-icon {
    font-size: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.support-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
}

.support-phone {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

.faq-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 16px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    padding: 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid transparent;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.faq-item.active {
    border-left-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(220, 53, 69, 0.15);
    background: #fff5f5;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    transition: background 0.3s ease;
}

.faq-question > span:first-child {
    flex: 1;
    margin-right: 15px;
}

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

.faq-item.active .faq-question {
    background: #fff5f5;
}

.faq-item.active .faq-question > span:first-child {
    color: var(--primary-color);
}

.faq-arrow {
    font-size: 28px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 15px;
    line-height: 1;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
}

.faq-answer {
    display: none;
    padding: 0 25px 20px 25px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
    border-top: 1px solid #e9ecef;
    margin-top: 0;
    padding-top: 20px;
    animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

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

/* Footer */
.footer {
    background: #333;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column p,
.footer-column a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

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

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 968px) {
    .support-faq-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .support-section {
        max-width: 100%;
    }
    
    .faq-section {
        padding: 30px 20px;
    }
    
    .faq-section h2 {
        font-size: 28px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header Mobile */
    .header .container {
        padding: 12px 15px;
        gap: 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo h1 {
        font-size: 18px;
    }
    
    .site-logo {
        max-height: 45px;
    }
    
    .header-right {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
        z-index: 1000;
        gap: 0;
        opacity: 0;
        visibility: hidden;
    }
    
    .header-right.mobile-open {
        max-height: 600px;
        padding: 20px;
        gap: 15px;
        opacity: 1;
        visibility: visible;
    }
    
    .nav {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        border-radius: 8px;
    }
    
    .header-contacts {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-left: 0;
    }
    
    .modern-contact-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .btn-text {
        display: inline;
    }
    
    .btn-chevron {
        display: none;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-label {
        font-size: 12px;
        padding: 6px 15px;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 28px;
        margin: 10px 0 15px 0;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin: 8px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
    }
    
    .btn-hero {
        width: 100%;
        padding: 14px 25px;
        font-size: 15px;
    }
    
    .hero-graphic {
        padding: 30px 20px;
    }
    
    .insurance-icon {
        font-size: 80px;
        margin-bottom: 20px;
    }
    
    .hero-badge {
        padding: 15px 20px;
        margin-bottom: 20px;
    }
    
    .badge-text {
        font-size: 28px;
    }
    
    .badge-label {
        font-size: 12px;
    }
    
    .hero-stats {
        gap: 20px;
        margin-top: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Products Section Mobile */
    .products-section {
        padding: 40px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .product-card {
        padding: 20px;
    }
    
    .product-icon {
        font-size: 50px;
        margin-bottom: 15px;
    }
    
    .product-image {
        height: 120px;
        margin-bottom: 15px;
    }
    
    .product-card h3 {
        font-size: 16px;
        margin-bottom: 15px;
        min-height: auto;
    }
    
    /* Companies Section Mobile */
    .companies-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
        padding: 0 30px;
        margin-bottom: 8px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
    }
    
    .company-card {
        padding: 15px;
        min-height: 80px;
        font-size: 12px;
    }
    
    .company-card img {
        max-height: 60px;
    }
    
    /* Blog Section Mobile */
    .blog-section {
        padding: 40px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-card h3 {
        font-size: 16px;
        padding: 15px 15px 8px;
    }
    
    .blog-card p {
        font-size: 13px;
        padding: 0 15px;
    }
    
    .blog-link {
        padding: 15px;
        font-size: 14px;
    }
    
    /* Support & FAQ Mobile */
    .support-faq-section {
        padding: 40px 0;
    }
    
    .support-faq-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .support-section h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .support-section p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .support-buttons {
        gap: 12px;
    }
    
    .support-btn {
        padding: 15px;
    }
    
    .support-icon {
        font-size: 24px;
        width: 45px;
        height: 45px;
    }
    
    .support-label {
        font-size: 12px;
    }
    
    .support-phone {
        font-size: 16px;
    }
    
    .faq-section {
        padding: 25px 15px;
    }
    
    .faq-section h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .faq-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .faq-list {
        gap: 12px;
    }
    
    .faq-question {
        padding: 15px 18px;
        font-size: 14px;
    }
    
    .faq-arrow {
        font-size: 24px;
    }
    
    .faq-answer {
        padding: 0 18px 15px 18px;
        font-size: 13px;
        padding-top: 15px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .footer-logo h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-column p,
    .footer-column a {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .footer-bottom {
        padding-top: 15px;
        font-size: 12px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 20px;
        padding: 0 20px;
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        padding: 15px;
    }
    
    .faq-section {
        padding: 20px 12px;
    }
}

/* Additional Mobile Styles for Other Pages */
@media (max-width: 768px) {
    /* Products Page */
    .products-section {
        padding: 40px 0 !important;
    }
    
    /* Blog Page */
    .blog-section {
        padding: 40px 0 !important;
    }
    
    .blog-pagination {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    
    /* About Page (Biz Kimiz) */
    .products-section[style*="padding: 80px"] {
        padding: 40px 0 !important;
    }
    
    div[style*="max-width: 1000px"] {
        max-width: 100% !important;
        margin: 30px auto !important;
    }
    
    div[style*="background: white"][style*="padding: 40px"] {
        padding: 25px 15px !important;
        margin-bottom: 25px !important;
    }
    
    div[style*="display: grid"][style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    div[style*="width: 100%"][style*="height: 400px"] {
        height: 250px !important;
    }
    
    /* Contact Page */
    iframe {
        max-width: 100%;
        height: auto;
        min-height: 250px;
    }
    
    /* Blog Detail Page */
    .blog-detail-wrapper {
        grid-template-columns: 1fr !important;
        padding: 20px 15px !important;
        gap: 25px !important;
    }
    
    .blog-main {
        padding: 25px 15px !important;
    }
    
    .blog-detail-title {
        font-size: 24px !important;
        margin-bottom: 15px !important;
    }
    
    .blog-detail-content {
        font-size: 15px !important;
        margin-top: 20px !important;
    }
    
    .blog-detail-image {
        margin: 20px 0 !important;
        max-height: 300px !important;
    }
    
    .blog-sidebar {
        gap: 20px !important;
    }
    
    .sidebar-widget {
        padding: 20px 15px !important;
    }
    
    .related-post-item {
        flex-direction: column !important;
    }
    
    .related-post-image {
        width: 100% !important;
        height: 150px !important;
        margin-bottom: 10px !important;
    }
}

