* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
}

/* Printer Support Section */
.printer-support {
    position: relative;
    background: url('/assets/header.webp') no-repeat center center/cover;
    color: #fff;
    padding: 150px 20px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.support-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 28, 17, 0.85) 0%, rgba(25, 45, 25, 0.9) 100%);
    z-index: 0;
}

.support-content {
    position: relative;
    display: flex;
    max-width: 1200px;
    width: 100%;
    z-index: 1;
    gap: 40px;
    flex-wrap: wrap;
}

.support-left,
.support-right {
    flex: 1;
    min-width: 300px;
    animation: fadeInUp 1s ease-out;
}

/* Brand Header Styles */
.brand-header {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 12px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 0.8s ease;
}

.brand-header .brand-logo {
    max-width: 60px;
    height: auto;
    object-fit: contain;
}

.brand-header h2 {
    font-size: 2.5rem;
    color: #0096d6;
    font-weight: 700;
    margin: 0;
}

.support-left p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #e6e6e6;
    text-align: justify;
}

.benefits-list {
    list-style: none;
    margin-top: 25px;
}

.benefits-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    transform: translateX(10px);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: #3aaf85;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.benefits-list li:hover::before {
    transform: scale(1.1);
}

/* Form Box Styles */
.form-box {
    background-color: #fff;
    color: #333;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeInRight 1s ease-out;
}

.form-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.form-box h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2a3d1f;
}

.form-box p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
}

.form-box form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-box input,
.form-box textarea {
    padding: 14px 18px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-box input:focus,
.form-box textarea:focus {
    outline: none;
    border-color: #3aaf85;
    box-shadow: 0 0 0 3px rgba(58, 175, 133, 0.2);
}

.form-box textarea {
    resize: vertical;
    min-height: 120px;
}

.form-box button {
    padding: 16px;
    background: linear-gradient(to right, #3aaf85, #2e8b68);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(58, 175, 133, 0.3);
    position: relative;
    overflow: hidden;
}

.form-box button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.form-box button:hover {
    background: linear-gradient(to right, #2e8b68, #3aaf85);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(58, 175, 133, 0.4);
}

.form-box button:hover::before {
    left: 100%;
}

/* Printer Issues Section */
.printer-issues-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #2a3d1f;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    animation: fadeInDown 1s ease;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #3aaf85;
    border-radius: 2px;
    transition: width 0.5s ease;
}

.section-title:hover::after {
    width: 150px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1.5s ease;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.issue-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 30px 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease;
}

.issue-card:nth-child(1) { animation-delay: 0.1s; }
.issue-card:nth-child(2) { animation-delay: 0.15s; }
.issue-card:nth-child(3) { animation-delay: 0.2s; }
.issue-card:nth-child(4) { animation-delay: 0.25s; }
.issue-card:nth-child(5) { animation-delay: 0.3s; }
.issue-card:nth-child(6) { animation-delay: 0.35s; }
.issue-card:nth-child(7) { animation-delay: 0.4s; }
.issue-card:nth-child(8) { animation-delay: 0.45s; }
.issue-card:nth-child(9) { animation-delay: 0.5s; }
.issue-card:nth-child(10) { animation-delay: 0.55s; }
.issue-card:nth-child(11) { animation-delay: 0.6s; }
.issue-card:nth-child(12) { animation-delay: 0.65s; }

.issue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 175, 133, 0.1) 0%, rgba(46, 139, 104, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.issue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.issue-card:hover::before {
    opacity: 1;
}

.issue-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.issue-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.issue-card:hover .issue-icon {
    transform: scale(1.1);
}

.issue-card h3 {
    font-size: 0.95rem;
    color: #2a3d1f;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}

.issues-note {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.issues-note p {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
}

.call-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(to right, #3aaf85, #2e8b68);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(58, 175, 133, 0.3);
}

.call-now-btn:hover {
    background: linear-gradient(to right, #2e8b68, #3aaf85);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(58, 175, 133, 0.4);
}

/* Why Choose Section */
.why-choose-section {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 20px;
    gap: 30px;
    justify-content: center;
    align-items: center;
    max-width: 1300px;
    margin: auto;
    background: #f0f7f4;
}

.image-section {
    flex: 1 1 500px;
    animation: fadeInLeft 1s ease;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 580px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.8s ease;
}

.slide.active {
    display: block;
    animation: zoomIn 10s ease-in-out infinite alternate;
}

.thumbnails {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.thumbnail {
    width: 32%;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.thumbnail.active {
    border: 2px solid #3aaf85;
    transform: translateY(-5px);
}

.thumbnail img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.thumbnail:hover img {
    transform: scale(1.05);
}

.content-section {
    flex: 1 1 500px;
    animation: fadeInRight 1s ease;
}

.content-section h2 {
    font-size: 2.3rem;
    color: #2a3d1f;
    margin-bottom: 20px;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #3aaf85;
    border-radius: 2px;
}

.content-section > p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
    font-size: 1.1rem;
}

.content-section .benefits-list {
    margin-top: 30px;
}

.content-section .benefits-list li {
    color: #2a3d1f;
    font-weight: 600;
}

.content-section .benefits-list li + p {
    padding-left: 40px;
    margin-bottom: 20px;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.content-section button {
    padding: 14px 30px;
    background: linear-gradient(to right, #3aaf85, #2e8b68);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(58, 175, 133, 0.3);
    position: relative;
    overflow: hidden;
}

.content-section button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.content-section button:hover {
    background: linear-gradient(to right, #2e8b68, #3aaf85);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(58, 175, 133, 0.4);
}

.content-section button:hover::before {
    left: 100%;
}

/* Achievement Section */
.achievement-section {
    background: linear-gradient(135deg, #2a3d1f 0%, #3a5c2d 100%);
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

.achievement-section h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 700;
    animation: fadeInDown 1s ease;
}

.achievement-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 40px 20px;
    color: #2c3e50;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.achievement-card:nth-child(1) { animation-delay: 0.1s; }
.achievement-card:nth-child(2) { animation-delay: 0.2s; }
.achievement-card:nth-child(3) { animation-delay: 0.3s; }
.achievement-card:nth-child(4) { animation-delay: 0.4s; }

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #3aaf85;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.achievement-card:hover::before {
    transform: scaleX(1);
}

.achievement-card i {
    font-size: 3rem;
    color: #3aaf85;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.achievement-card:hover i {
    transform: scale(1.2) rotate(15deg);
}

.achievement-card h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.achievement-card:hover h3 {
    color: #3aaf85;
}

.achievement-card p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services-section {
    padding: 100px 20px;
    background-color: #fff;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #3aaf85, #2e8b68);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3aaf85 0%, #2e8b68 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-card h3 {
    font-size: 1.4rem;
    color: #2a3d1f;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 50px 20px 0;
}

.faq-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2a3d1f;
    margin-bottom: 15px;
    animation: fadeInDown 1s ease;
}

.faq-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease;
}

.faq-container {
    border-top: 1px solid #eee;
    padding-bottom: 2rem;
}

.faq-item {
    border-bottom: 1px solid #eee;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 25px 40px;
    background: #fff;
    border: none;
    outline: none;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9f9f9;
    color: #3aaf85;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 40px;
    font-size: 2rem;
    color: #3aaf85;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '-';
    color: #2e8b68;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    padding: 0 40px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    padding: 0 40px 30px 40px;
    max-height: 400px;
    opacity: 1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1f3d2a 0%, #2d5c3a 100%);
    padding: 80px 20px;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.cta-content p {
    font-size: 1.2rem;
    color: #e6e6e6;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #3aaf85;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(58, 175, 133, 0.4);
}

.cta-btn:hover {
    background: #2e8b68;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(58, 175, 133, 0.5);
}

.cta-btn i {
    font-size: 1.1rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .issues-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .achievement-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .issues-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .support-content {
        flex-direction: column;
        gap: 40px;
    }

    .brand-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .issues-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .issue-card {
        padding: 25px 15px;
    }
    
    .issue-card h3 {
        font-size: 0.85rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-box {
        padding: 30px;
    }

    .achievement-card {
        padding: 30px 15px;
    }

    .achievement-card h3 {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 20px;
        font-size: 1.1rem;
    }

    .faq-question::after {
        right: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-answer {
        padding: 0 20px;
        font-size: 1rem;
    }
    
    .slider-container {
        height: 400px;
    }
    
    .issues-note {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 2rem;
    }

    .achievement-cards {
        grid-template-columns: 1fr;
    }

    .achievement-section {
        padding: 60px 20px;
    }

    .slider-container {
        height: 300px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-btn {
        padding: 14px 30px;
        font-size: 1.1rem;
    }
    
    .support-left p {
        font-size: 1.05rem;
    }
    
    .printer-support {
        padding: 130px 20px 70px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .issues-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .issue-card {
        padding: 20px 10px;
    }
    
    .issue-icon {
        width: 50px;
        height: 50px;
    }
    
    .issue-card h3 {
        font-size: 0.8rem;
    }

    .brand-header {
        padding: 15px 25px;
    }
    
    .brand-header .brand-logo {
        max-width: 45px;
    }
    
    .brand-header h2 {
        font-size: 1.8rem;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .printer-support {
        padding: 120px 15px 60px;
    }
    
    .support-left p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .benefits-list li {
        font-size: 1rem;
        padding-left: 35px;
    }
    
    .benefits-list li::before {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .form-box {
        padding: 25px 20px;
    }
    
    .form-box h2 {
        font-size: 1.5rem;
    }
    
    .form-box p {
        font-size: 0.9rem;
    }
    
    .form-box input,
    .form-box textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .form-box button {
        padding: 14px;
        font-size: 1rem;
    }
    
    .printer-issues-section {
        padding: 60px 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .issues-note {
        padding: 20px 15px;
    }
    
    .issues-note p {
        font-size: 0.95rem;
    }
    
    .call-now-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .services-section {
        padding: 60px 15px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
    }
    
    .service-icon i {
        font-size: 1.6rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .faq-section {
        margin: 60px auto;
    }
    
    .faq-header {
        padding: 30px 15px 0;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 18px 15px;
        font-size: 1rem;
        padding-right: 45px;
    }
    
    .faq-question::after {
        right: 15px;
        font-size: 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 20px;
    }
    
    .faq-answer {
        padding: 0 15px;
        font-size: 0.95rem;
    }
    
    .cta-section {
        padding: 60px 15px;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .achievement-section h2 {
        font-size: 1.8rem;
    }
    
    .achievement-card {
        padding: 25px 15px;
    }
    
    .achievement-card i {
        font-size: 2.5rem;
    }
    
    .achievement-card h3 {
        font-size: 1.6rem;
    }
    
    .achievement-card p {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .issues-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .issue-card {
        padding: 15px 8px;
    }
    
    .issue-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .issue-card h3 {
        font-size: 0.7rem;
    }
    
    .brand-header {
        padding: 12px 20px;
        gap: 15px;
    }
    
    .brand-header .brand-logo {
        max-width: 40px;
    }
    
    .brand-header h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .form-box h2 {
        font-size: 1.3rem;
    }
}
