
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            color: #1e293b;
            background: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        /* ===== WIDE PARAGRAPH STYLES ===== */
        p {
            max-width: 100%;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .section-header p,
        .hero-content p,
        .form-content p,
        .service-card p,
        .benefit-item p,
        .process-step p,
        .faq-answer p,
        .checklist-item p,
        .report-text p {
            max-width: 100%;
            width: 100%;
            line-height: 1.8;
        }

        .hero-content p {
            max-width: 100%;
            font-size: 1.2rem;
            margin-bottom: 25px;
            color: rgba(255,255,255,0.95);
        }

        .section-header p {
            max-width: 1000px;
            margin: 0 auto 20px;
            font-size: 1.2rem;
        }

        .service-card p {
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        /* ===== BUTTONS ===== */
        .btn-primary {
            background: linear-gradient(45deg, #105bbf, #0d4a9e);
            color: white;
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            font-size: 1rem;
            box-shadow: 0 10px 25px rgba(16,91,191,0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.7s ease;
            z-index: -1;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 35px rgba(16,91,191,0.4);
        }

        .btn-outline {
            border: 2px solid #105bbf;
            color: #105bbf;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.4s ease;
            background: transparent;
            font-size: 0.95rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-outline::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #105bbf;
            transition: left 0.4s ease;
            z-index: -1;
        }

        .btn-outline:hover::before {
            left: 0;
        }

        .btn-outline:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(16,91,191,0.2);
            border-color: #105bbf;
        }

        /* ===== SECTION HEADER ===== */
        .section-header {
            text-align: center;
            max-width: 100%;
            margin: 0 auto 30px; /* REDUCED GAP */
        }

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

        @keyframes zoomIn {
            from { transform: scale(1); }
            to { transform: scale(1.1); }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .section-header .subtitle {
            color: #105bbf;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: block;
            background: linear-gradient(135deg, #105bbf, #0d4a9e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #0b1e33;
            font-weight: 800;
            line-height: 1.2;
        }

        .section-header h2 span {
            color: #105bbf;
            position: relative;
            display: inline-block;
        }

        .section-header h2 span::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 10px;
            background: rgba(16,91,191,0.2);
            z-index: -1;
            border-radius: 10px;
        }

        /* ===== HERO SECTION ===== */
        .hero-section {
            padding: 60px 0 40px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.pexels.com/photos/669612/pexels-photo-669612.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
            opacity: 0.15;
            animation: zoomIn 20s infinite alternate;
        }

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

        .hero-content {
            animation: slideInLeft 1s ease;
        }

        .hero-content h1 {
            font-size: 3.2rem;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .hero-content h1 span {
            color: #ffd966;
        }

        .hero-stats {
            display: flex;
            gap: 30px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .hero-stat {
            text-align: center;
            background: rgba(255,255,255,0.1);
            padding: 12px 20px;
            border-radius: 15px;
            backdrop-filter: blur(5px);
            transition: all 0.4s ease;
            flex: 1;
            min-width: 120px;
        }

        .hero-stat:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.2);
        }

        .hero-stat .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffd966;
            margin-bottom: 5px;
        }

        .hero-stat .label {
            color: rgba(255,255,255,0.95);
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* ===== HERO FORM (REPLACES IMAGE) ===== */
        .hero-form {
            background: white;
            border-radius: 30px;
            padding: 35px 30px;
            box-shadow: 0 30px 50px rgba(0,0,0,0.2);
            animation: slideInRight 1s ease;
        }

        .hero-form h3 {
            font-size: 2rem;
            margin-bottom: 10px;
            color: #105bbf;
            font-weight: 700;
        }

        .hero-form p {
            color: #64748b;
            margin-bottom: 20px;
            font-size: 0.95rem;
            max-width: 100%;
            width: 100%;
        }

        .hero-form .form-group {
            margin-bottom: 15px;
        }

        .hero-form input,
        .hero-form select,
        .hero-form textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 15px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background: #f8fafc;
        }

        .hero-form input:focus,
        .hero-form select:focus,
        .hero-form textarea:focus {
            outline: none;
            border-color: #105bbf;
            box-shadow: 0 0 0 4px rgba(16,91,191,0.1);
        }

        .hero-form .btn-primary {
            width: 100%;
            margin-top: 10px;
        }

        .hero-form small {
            display: block;
            text-align: center;
            margin-top: 15px;
            color: #64748b;
            font-size: 0.8rem;
        }

        .hero-form small i {
            color: #105bbf;
            margin-right: 5px;
        }

        /* ===== FORM SECTION - REMOVED ===== */
        /* Second form completely removed */

        /* ===== AUDIT SERVICES SECTION ===== */
        .audit-services-section {
            padding: 50px 0;
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 15px;
        }

        .service-card {
            background: white;
            border-radius: 30px;
            padding: 30px 25px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #105bbf, #0d4a9e);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-12px);
            border-color: transparent;
            box-shadow: 0 40px 60px rgba(16,91,191,0.3);
        }

        .service-card:hover h3,
        .service-card:hover p,
        .service-card:hover li {
            color: white;
        }

        .service-icon {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, #e8f0fe, #d9e6ff);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.5s ease;
        }

        .service-card:hover .service-icon {
            background: white;
            transform: rotateY(180deg);
        }

        .service-icon i {
            font-size: 2.3rem;
            color: #105bbf;
            transition: all 0.5s ease;
        }

        .service-card:hover .service-icon i {
            color: #105bbf;
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .service-card p {
            color: #64748b;
            font-size: 0.95rem;
            margin-bottom: 15px;
            line-height: 1.7;
        }

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

        .service-features li {
            padding: 6px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: #475569;
            border-bottom: 1px dashed rgba(0,0,0,0.05);
        }

        .service-features i {
            color: #105bbf;
            font-size: 0.9rem;
            width: 18px;
        }

        .service-card:hover .service-features i {
            color: white;
        }

        /* ===== CHECKLIST SECTION ===== */
        .checklist-section {
            padding: 50px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }

        .checklist-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 20px;
        }

        .checklist-item {
            background: white;
            border-radius: 20px;
            padding: 25px 20px;
            text-align: center;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
        }

        .checklist-item:hover {
            transform: translateY(-8px);
            border-color: #105bbf;
            box-shadow: 0 15px 25px rgba(16,91,191,0.1);
        }

        .checklist-item i {
            font-size: 2.5rem;
            color: #105bbf;
            margin-bottom: 15px;
        }

        .checklist-item h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .checklist-item p {
            color: #64748b;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ===== BENEFITS SECTION ===== */
        .benefits-section {
            padding: 50px 0;
            background: white;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 20px;
        }

        .benefit-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
            background: #f8fafc;
            padding: 25px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
            transition: all 0.4s ease;
        }

        .benefit-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(16,91,191,0.1);
            border-color: #105bbf;
        }

        .benefit-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, #e8f0fe, #d9e6ff);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .benefit-icon i {
            font-size: 1.8rem;
            color: #105bbf;
        }

        .benefit-content h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .benefit-content p {
            color: #64748b;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ===== PROCESS SECTION ===== */
        .process-section {
            padding: 50px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 20px;
        }

        .process-step {
            background: white;
            padding: 30px 20px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid #e2e8f0;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .process-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #105bbf, #0d4a9e);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }

        .process-step:hover::before {
            opacity: 1;
        }

        .process-step:hover {
            transform: translateY(-10px);
            border-color: transparent;
            box-shadow: 0 30px 40px rgba(16,91,191,0.3);
        }

        .process-step:hover h3,
        .process-step:hover p {
            color: white;
        }

        .step-number {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, #105bbf, #0d4a9e);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            font-weight: 800;
            margin: 0 auto 15px;
            transition: all 0.5s ease;
        }

        .process-step:hover .step-number {
            background: white;
            color: #105bbf;
            transform: rotate(360deg);
        }

        .process-step h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .process-step p {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ===== PRICING SECTION ===== */
        .pricing-section {
            padding: 50px 0;
            background: white;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 20px;
        }

        .pricing-card {
            background: white;
            border-radius: 30px;
            padding: 35px 25px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
            text-align: center;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card.featured {
            border: 2px solid #105bbf;
            transform: scale(1.03);
            box-shadow: 0 30px 60px rgba(16,91,191,0.2);
        }

        .pricing-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 50px rgba(16,91,191,0.15);
        }

        .pricing-card.featured:hover {
            transform: scale(1.03) translateY(-12px);
        }

        .popular-badge {
            position: absolute;
            top: 15px;
            right: -30px;
            background: linear-gradient(135deg, #105bbf, #0d4a9e);
            color: white;
            padding: 6px 35px;
            font-size: 0.8rem;
            font-weight: 600;
            transform: rotate(45deg);
        }

        .pricing-icon {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, #e8f0fe, #d9e6ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
        }

        .pricing-icon i {
            font-size: 2rem;
            color: #105bbf;
        }

        .pricing-card.featured .pricing-icon {
            background: linear-gradient(135deg, #105bbf, #0d4a9e);
        }

        .pricing-card.featured .pricing-icon i {
            color: white;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .price {
            font-size: 2.3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #105bbf, #0d4a9e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .pricing-card p {
            color: #64748b;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 20px 0;
            text-align: left;
        }

        .pricing-features li {
            padding: 8px 0;
            border-bottom: 1px solid #e2e8f0;
            color: #475569;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
        }

        .pricing-features li i {
            color: #105bbf;
            font-size: 0.95rem;
        }

        /* ===== REPORT SECTION ===== */
        .report-section {
            padding: 50px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }

        .report-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            align-items: center;
            background: white;
            border-radius: 30px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
        }

        .report-text h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #0b1e33;
            font-weight: 700;
        }

        .report-text h3 span {
            color: #105bbf;
        }

        .report-text p {
            color: #64748b;
            margin-bottom: 20px;
        }

        .report-features {
            list-style: none;
        }

        .report-features li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #475569;
        }

        .report-features i {
            color: #105bbf;
            font-size: 1.2rem;
        }

        .report-image {
            text-align: center;
            background: #f8fafc;
            border-radius: 20px;
            padding: 30px;
            border: 1px dashed #105bbf;
        }

        .report-image i {
            font-size: 4rem;
            color: #105bbf;
        }

        .report-image p {
            color: #0b1e33;
            font-weight: 600;
            margin-top: 15px;
        }

        .report-image small {
            color: #64748b;
            font-size: 0.85rem;
        }

        /* ===== FAQ SECTION ===== */
        .faq-section {
            padding: 50px 0;
            background: #f9f9f9;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            max-width: 1000px;
            margin: 20px auto 0;
        }

        .faq-item {
            background: white;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid #eaeaea;
            overflow: hidden;
        }

        .faq-item:hover {
            border-color: #105bbf;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .faq-question {
            font-weight: 600;
            font-size: 1rem;
            padding: 15px 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            background: white;
            border-bottom: 1px solid transparent;
        }

        .faq-item.active .faq-question {
            border-bottom-color: #eaeaea;
        }

        .faq-question i:first-child {
            color: #105bbf;
            font-size: 1rem;
            width: 20px;
        }

        .faq-question i:last-child {
            transition: all 0.3s ease;
            margin-left: auto;
            color: #888;
            font-size: 0.8rem;
        }

        .faq-item.active .faq-question i:last-child {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 18px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #555;
            font-size: 0.9rem;
            background: white;
        }

        .faq-item.active .faq-answer {
            padding: 0 18px 18px;
            max-height: 300px;
        }

        .faq-answer p {
            margin: 0;
            max-width: 100%;
            font-size: 0.95rem;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 50px 0;
            background: linear-gradient(135deg, #105bbf 0%, #0d4a9e 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.pexels.com/photos/669612/pexels-photo-669612.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
            opacity: 0.1;
            animation: zoomIn 20s infinite alternate;
            z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: white;
            font-weight: 700;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: rgba(255,255,255,0.95);
            max-width: 100%;
            line-height: 1.8;
        }

        .cta-content strong {
            color: #ffd966;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .cta-buttons .btn-primary {
            background: white;
            color: #105bbf;
            padding: 14px 40px;
            font-size: 1.1rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .cta-buttons .btn-primary:hover {
            background: #f0f0f0;
            transform: translateY(-5px);
            box-shadow: 0 20px 35px rgba(0,0,0,0.3);
        }

        /* ===== ANIMATION DELAYS ===== */
        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.15s; }
        .service-card:nth-child(3) { animation-delay: 0.2s; }
        .service-card:nth-child(4) { animation-delay: 0.25s; }
        .service-card:nth-child(5) { animation-delay: 0.3s; }
        .service-card:nth-child(6) { animation-delay: 0.35s; }

        .benefit-item:nth-child(1) { animation-delay: 0.1s; }
        .benefit-item:nth-child(2) { animation-delay: 0.15s; }
        .benefit-item:nth-child(3) { animation-delay: 0.2s; }
        .benefit-item:nth-child(4) { animation-delay: 0.25s; }
        .benefit-item:nth-child(5) { animation-delay: 0.3s; }
        .benefit-item:nth-child(6) { animation-delay: 0.35s; }

        .process-step:nth-child(1) { animation-delay: 0.1s; }
        .process-step:nth-child(2) { animation-delay: 0.15s; }
        .process-step:nth-child(3) { animation-delay: 0.2s; }
        .process-step:nth-child(4) { animation-delay: 0.25s; }

        .checklist-item:nth-child(1) { animation-delay: 0.1s; }
        .checklist-item:nth-child(2) { animation-delay: 0.15s; }
        .checklist-item:nth-child(3) { animation-delay: 0.2s; }
        .checklist-item:nth-child(4) { animation-delay: 0.25s; }
        .checklist-item:nth-child(5) { animation-delay: 0.3s; }
        .checklist-item:nth-child(6) { animation-delay: 0.35s; }
        .checklist-item:nth-child(7) { animation-delay: 0.4s; }
        .checklist-item:nth-child(8) { animation-delay: 0.45s; }
        .checklist-item:nth-child(9) { animation-delay: 0.5s; }
        .checklist-item:nth-child(10) { animation-delay: 0.55s; }
        .checklist-item:nth-child(11) { animation-delay: 0.6s; }
        .checklist-item:nth-child(12) { animation-delay: 0.65s; }

        /* ===== MOBILE RESPONSIVE ===== */
        @media (max-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .services-grid,
            .benefits-grid,
            .pricing-grid,
            .checklist-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .report-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
                text-align: center;
            }
            
            .hero-content p {
                text-align: center;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            .hero-form {
                max-width: 500px;
                margin: 0 auto;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .hero-section,
            .audit-services-section,
            .checklist-section,
            .benefits-section,
            .process-section,
            .pricing-section,
            .report-section,
            .faq-section,
            .cta-section {
                padding: 40px 0;
            }
            
            .hero-grid,
            .services-grid,
            .benefits-grid,
            .pricing-grid,
            .process-steps,
            .faq-grid,
            .checklist-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 10px;
            }
            
            .hero-stat {
                width: 100%;
            }
            
            .section-header {
                margin-bottom: 20px;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .section-header p {
                font-size: 1rem;
            }
            
            .service-card,
            .benefit-item,
            .process-step,
            .pricing-card,
            .checklist-item {
                padding: 20px 15px;
            }
            
            .service-icon {
                width: 55px;
                height: 55px;
            }
            
            .service-icon i {
                font-size: 2rem;
            }
            
            .service-card h3 {
                font-size: 1.2rem;
            }
            
            .step-number {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
            
            .benefit-item {
                flex-direction: column;
                text-align: center;
                padding: 15px;
            }
            
            .benefit-icon {
                margin: 0 auto;
            }
            
            .report-content {
                padding: 25px;
            }
            
            .report-text h3 {
                font-size: 1.5rem;
            }
            
            .faq-question {
                font-size: 0.95rem;
                padding: 12px 15px;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
            
            .cta-content p {
                font-size: 1rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .cta-buttons .btn-primary {
                width: 100%;
                text-align: center;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.6rem;
            }
            
            .section-header h2 {
                font-size: 1.5rem;
            }
            
            .hero-form {
                padding: 25px 20px;
            }
            
            .hero-form h3 {
                font-size: 1.6rem;
            }
            
            .cta-content h2 {
                font-size: 1.6rem;
            }
        }
    