:root {
            --primary-color: #fc2828;
            --primary-dark: #e02020;
            --text-dark: #111;
            --text-light: #666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            --transition: all 0.4s ease;
        }

        
        .commitment-section {
            background: var(--bg-light);
            position: relative;
        }

        .commitment-section .section-title .title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.2;
            margin-bottom: 0;
        }

        .commitment-section .section-title .title span {
            color: var(--primary-color);
        }

        .commitment-section .section-title .subtitle {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: var(--primary-color);
            text-transform: uppercase;
            font-size: 16px;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .intro-text p {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 1.1rem;
            margin-bottom: 0;
        }

        
        .commitment-grid {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .commitment-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .commitment-card {
            background: var(--white);
            border-radius: 15px;
            padding: 30px 25px;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow);
            border: 1px solid #f0f0f0;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .commitment-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-color);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .commitment-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(252, 40, 40, 0.15);
            border-color: var(--primary-color);
        }

        .commitment-card:hover::before {
            transform: scaleX(1);
        }

        .card-icon {
            margin-bottom: 20px;
        }

        .icon-wrapper {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            transition: var(--transition);
        }

        .commitment-card:hover .icon-wrapper {
            transform: translateY(-5px) rotate(5deg);
            box-shadow: 0 10px 25px rgba(252, 40, 40, 0.3);
        }

        .icon-wrapper i {
            font-size: 28px;
            color: white;
            transition: var(--transition);
        }

        .card-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .card-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.3;
            transition: var(--transition);
        }

        .commitment-card:hover .card-content h3 {
            color: var(--primary-color);
        }

        .card-content p {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 0;
            font-size: 0.95rem;
            flex: 1;
        }

        
        .service-section {
            background: var(--bg-light);
            position: relative;
        }

        .service-card-items {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
            border: none;
        }

        .service-card-items:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(252, 40, 40, 0.15);
        }

        .service-image {
            position: relative;
            height: 200px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

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

        .service-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(252, 40, 40, 0.85), rgba(220, 20, 20, 0.85));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .service-card-items:hover .service-overlay {
            opacity: 1;
        }

        .service-icon {
            text-align: center;
            transform: scale(0.8);
            transition: all 0.4s ease;
        }

        .service-card-items:hover .service-icon {
            transform: scale(1);
        }

        .service-icon i {
            font-size: 50px;
            color: var(--white);
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
        }

        .service-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .content-wrapper {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .service-content h3 {
            margin-bottom: 20px;
            font-size: 1.4rem;
            font-weight: 700;
            color: #333;
            text-align: center;
            transition: var(--transition);
        }

        .service-card-items:hover .service-content h3 {
            color: var(--primary-color);
        }

        .service-content p {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 0;
            flex: 1;
            font-size: 0.95rem;
        }

        
        .values-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
            flex: 1;
            justify-content: center;
        }

        .value-item {
            display: flex;
            align-items: flex-start;
            padding: 15px;
            background: var(--bg-light);
            border-radius: 10px;
            transition: var(--transition);
            border-left: 4px solid var(--primary-color);
        }

        .service-card-items:hover .value-item {
            background: #fff5f5;
            transform: translateX(3px);
        }

        .value-icon {
            background: var(--primary-color);
            color: var(--white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            margin-right: 15px;
            flex-shrink: 0;
            transition: var(--transition);
            margin-top: 2px;
        }

        .service-card-items:hover .value-icon {
            background: #ff4444;
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(252, 40, 40, 0.3);
        }

        .value-content {
            flex: 1;
            color: var(--text-light);
            line-height: 1.5;
            font-size: 0.95rem;
        }

        .value-content strong {
            color: #333;
            transition: var(--transition);
            display: block;
            margin-bottom: 4px;
        }

        .service-card-items:hover .value-content strong {
            color: var(--primary-color);
        }

        
        .achievement-section-3 {
            background-color: #000;
            position: relative;
            overflow: hidden;
        }

        .achievement-section-3 .section-title .subtitle,
        .achievement-section-3 .section-title .title,
        .achievement-section-3 .counter-items .content h2,
        .achievement-section-3 .counter-items .content p {
            color: var(--white);
        }

        .filter-red {
            filter: invert(16%) sepia(89%) saturate(6056%) hue-rotate(358deg) brightness(97%) contrast(112%) !important;
        }

        .counter-area {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .counter-items {
            text-align: center;
        }

        .counter-items .icon {
            margin-bottom: 15px;
        }

        .counter-items .content h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('assets/img/pattern.png') repeat;
            opacity: 0.1;
        }

        .cta-content h2 {
            font-size: 36px;
            font-weight: bold;
            color: var(--white);
        }

        
        @media (max-width: 1400px) {
            .commitment-row {
                grid-template-columns: repeat(4, 1fr);
                gap: 25px;
            }
            
            .commitment-card {
                padding: 25px 20px;
            }
        }

        @media (max-width: 1200px) {
            .commitment-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .commitment-card {
                padding: 25px 20px;
            }
            
            .commitment-section .section-title .title {
                font-size: 2.2rem;
            }

            .counter-area {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 991px) {
            .commitment-section .section-title .title {
                font-size: 2rem;
            }
            
            .commitment-grid {
                gap: 25px;
            }
            
            .commitment-card {
                padding: 25px 20px;
            }
            
            .card-content h3 {
                font-size: 1.2rem;
            }
            
            .card-content p {
                font-size: 0.9rem;
            }
            
            .icon-wrapper {
                width: 65px;
                height: 65px;
            }
            
            .icon-wrapper i {
                font-size: 26px;
            }

            .service-content {
                padding: 20px;
            }
            
            .service-content h3 {
                font-size: 1.3rem;
                margin-bottom: 15px;
            }
            
            .service-content p {
                font-size: 0.92rem;
            }
            
            .value-item {
                padding: 12px;
            }
            
            .value-icon {
                width: 36px;
                height: 36px;
                font-size: 14px;
                margin-right: 12px;
            }
            
            .value-content {
                font-size: 0.9rem;
            }
            
            .values-list {
                gap: 12px;
            }

            .cta-content h2 {
                font-size: 28px;
            }
        }

        @media (max-width: 768px) {
            .commitment-section .section-title .title {
                font-size: 1.8rem;
                text-align: center;
            }
            
            .commitment-section .section-title .subtitle {
                justify-content: center;
            }
            
            .intro-text p {
                text-align: center;
                font-size: 1rem;
            }
            
            .commitment-row {
                grid-template-columns: 1fr;
                gap: 20px;
                max-width: 450px;
                margin: 0 auto;
            }
            
            .commitment-grid {
                gap: 20px;
            }
            
            .commitment-card {
                padding: 25px 20px;
            }
            
            .card-content h3 {
                font-size: 1.3rem;
            }
            
            .card-content p {
                font-size: 0.95rem;
            }
            
            .icon-wrapper {
                width: 70px;
                height: 70px;
            }
            
            .icon-wrapper i {
                font-size: 28px;
            }

            .service-card-items {
                margin-bottom: 0;
            }
            
            .service-image {
                height: 180px;
            }
            
            .service-content {
                padding: 20px;
            }
            
            .values-list {
                gap: 12px;
            }
            
            .service-content h3 {
                font-size: 1.3rem;
            }
            
            .service-content p {
                font-size: 0.9rem;
                line-height: 1.6;
            }

            .counter-area {
                grid-template-columns: 1fr;
                gap: 20px;
                text-align: center;
                max-width: 300px;
                margin: 0 auto;
            }
            
            .counter-items .content h2 {
                font-size: 2.5rem;
            }

            .section-title .title {
                font-size: 2rem;
            }
            
            .section-title .subtitle {
                font-size: 14px;
            }
        }

        @media (max-width: 576px) {
            .commitment-section .section-title .title {
                font-size: 1.6rem;
            }
            
            .commitment-section .section-title .subtitle {
                font-size: 14px;
            }
            
            .intro-text p {
                font-size: 0.95rem;
            }
            
            .commitment-card {
                padding: 22px 18px;
            }
            
            .card-content h3 {
                font-size: 1.15rem;
                margin-bottom: 12px;
            }
            
            .card-content p {
                font-size: 0.88rem;
                line-height: 1.5;
            }
            
            .icon-wrapper {
                width: 60px;
                height: 60px;
            }
            
            .icon-wrapper i {
                font-size: 24px;
            }

            .section-title .title {
                font-size: 1.8rem;
            }
            
            .service-image {
                height: 160px;
            }
            
            .service-content {
                padding: 18px;
            }
            
            .service-content h3 {
                font-size: 1.25rem;
                margin-bottom: 15px;
            }
            
            .service-content p {
                font-size: 0.88rem;
                line-height: 1.6;
            }
            
            .value-item {
                padding: 12px 10px;
                margin-bottom: 0;
            }
            
            .value-icon {
                width: 32px;
                height: 32px;
                font-size: 13px;
                margin-right: 12px;
            }
            
            .value-content {
                font-size: 0.86rem;
                line-height: 1.5;
            }
            
            .values-list {
                gap: 10px;
            }
        }

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

        .wow.fadeInUp {
            animation-name: fadeInUp;
        }

        
        .card-content h3 {
            min-height: 2.8em;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-content p {
            min-height: 4.5em;
            display: flex;
            align-items: center;
        }

        
        .section-padding {
            padding: 80px 0;
        }

        .mb-50 {
            margin-bottom: 50px;
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }
            
            .mb-50 {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 576px) {
            .section-padding {
                padding: 50px 0;
            }
            
            .mb-50 {
                margin-bottom: 30px;
            }
        }

        
        .commitment-card:active {
            transform: translateY(-3px);
        }

        
        .commitment-card {
            min-height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        @media (max-width: 768px) {
            .commitment-card {
                min-height: 200px;
            }
        }

        @media (max-width: 576px) {
            .commitment-card {
                min-height: 180px;
                padding: 20px 15px;
                border-radius: 12px;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
            }
            
            .commitment-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 25px rgba(252, 40, 40, 0.15);
            }
            
            .commitment-card .card-content h3 {
                font-size: 1.1rem;
                min-height: 2.6em;
                margin-bottom: 10px;
            }
            
            .commitment-card .card-content p {
                font-size: 0.85rem;
                min-height: 4em;
                line-height: 1.5;
            }
            
            .icon-wrapper {
                width: 55px;
                height: 55px;
                border-radius: 12px;
                margin-bottom: 15px;
            }
            
            .icon-wrapper i {
                font-size: 22px;
            }
            
            .commitment-card:hover .icon-wrapper {
                transform: translateY(-3px) rotate(3deg);
            }
        }

        
        @media (max-width: 480px) {
            .commitment-card {
                min-height: 170px;
                padding: 18px 15px;
            }
            
            .card-content h3 {
                font-size: 1.05rem;
                min-height: 2.4em;
            }
            
            .card-content p {
                font-size: 0.82rem;
                min-height: 3.8em;
            }
            
            .icon-wrapper {
                width: 50px;
                height: 50px;
            }
            
            .icon-wrapper i {
                font-size: 20px;
            }

            .values-list {
                gap: 8px;
            }
            
            .value-item {
                padding: 10px 8px;
            }
            
            .value-content {
                font-size: 0.84rem;
            }
            
            .value-icon {
                width: 30px;
                height: 30px;
                font-size: 12px;
                margin-right: 10px;
            }
            
            .service-content {
                padding: 16px;
            }
            
            .service-content h3 {
                font-size: 1.2rem;
            }
            
            .service-content p {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 375px) {
            .commitment-card {
                min-height: 160px;
                padding: 16px 12px;
            }
            
            .card-content h3 {
                font-size: 1rem;
                min-height: 2.2em;
            }
            
            .card-content p {
                font-size: 0.8rem;
                min-height: 3.5em;
                line-height: 1.4;
            }
            
            .icon-wrapper {
                width: 45px;
                height: 45px;
                border-radius: 10px;
            }
            
            .icon-wrapper i {
                font-size: 18px;
            }

            .service-content {
                padding: 14px;
            }
            
            .service-content h3 {
                font-size: 1.15rem;
                margin-bottom: 12px;
            }
            
            .service-content p {
                font-size: 0.82rem;
            }
            
            .value-item {
                padding: 8px;
            }
            
            .value-content {
                font-size: 0.8rem;
            }
            
            .value-icon {
                width: 28px;
                height: 28px;
                font-size: 11px;
                margin-right: 8px;
            }
        }

        
        @media (hover: none) and (pointer: coarse) {
            .commitment-card:hover {
                transform: none;
            }
            
            .commitment-card:active {
                transform: scale(0.98);
            }
        }

        
        @media (prefers-contrast: high) {
            .commitment-card {
                border: 2px solid #333;
            }
            
            .commitment-card:hover {
                border-color: var(--primary-color);
            }
        }

        
        @media (prefers-reduced-motion: reduce) {
            .commitment-card,
            .icon-wrapper {
                transition: none;
            }
            
            .commitment-card:hover {
                transform: none;
            }
        }

        
        .section-title-area {
            margin-bottom: 0;
        }

        .responsive-text {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 1.1rem;
            margin-bottom: 0;
            text-align: left;
            
            
            font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
            line-height: clamp(1.5, 1.7vw + 1.3, 1.7);
        }

        
        @media (max-width: 1399px) {
            .responsive-text {
                font-size: 1.05rem;
                line-height: 1.65;
            }
        }

        @media (max-width: 1199px) {
            .responsive-text {
                font-size: 1rem;
                line-height: 1.6;
            }
        }

        @media (max-width: 991px) {
            .responsive-text {
                font-size: 0.98rem;
                line-height: 1.55;
            }
        }

        @media (max-width: 768px) {
            .responsive-text {
                font-size: 1rem;
                line-height: 1.6;
                text-align: center;
                max-width: 600px;
                margin: 0 auto;
            }
        }

        @media (max-width: 576px) {
            .responsive-text {
                font-size: 0.95rem;
                line-height: 1.55;
                padding: 0 10px;
            }
        }

        @media (max-width: 480px) {
            .responsive-text {
                font-size: 0.92rem;
                line-height: 1.5;
                padding: 0 5px;
            }
        }

        @media (max-width: 375px) {
            .responsive-text {
                font-size: 0.9rem;
                line-height: 1.45;
            }
        }

        @media (max-width: 320px) {
            .responsive-text {
                font-size: 0.88rem;
                line-height: 1.4;
            }
        }

        
        .row.d-flex.align-items-center {
            align-items: flex-start;
        }

        .section-title-area,
        .intro-text {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            height: 100%;
        }

        
        .responsive-text {
            font-weight: 400;
            color: #555;
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        
        .responsive-text {
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
        }

        
        @media (hover: none) and (pointer: coarse) {
            .responsive-text {
                font-size: 1rem; 
                line-height: 1.6;
            }
        }

        
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .responsive-text {
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
            }
        }

        
        .contact-info-items .contact-label {
            font-size: 14px;
            margin-bottom: 5px;
            color: #666;
        }

        .contact-info-items .contact-value {
            font-size: 16px;
            margin-bottom: 0;
        }

        .contact-info-items .contact-value a {
            font-size: inherit;
            color: inherit;
            text-decoration: none;
        }

        
        @media (max-width: 768px) {
            .contact-info-items .contact-label {
                font-size: 12px;
            }
            
            .contact-info-items .contact-value {
                font-size: 14px;
            }
            
            .contact-info-items .icon svg {
                width: 24px;
                height: 24px;
            }
        }

        @media (max-width: 576px) {
            .contact-info-items .contact-label {
                font-size: 11px;
            }
            
            .contact-info-items .contact-value {
                font-size: 13px;
            }
            
            .contact-info-items .icon svg {
                width: 20px;
                height: 20px;
            }
        }

        
        .hover-text-dark:hover {
            color: #000 !important;
            transition: color 0.3s ease;
        }

        
        .service-card-items:active {
            transform: translateY(-4px);
        }

        .value-item:hover {
            background: #fff0f0 !important;
            transform: translateX(5px) !important;
        }

        
        .service-image {
            background: #f0f0f0;
        }

        .service-image img {
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        
        .row.g-4 {
            margin: 0 -15px;
        }

        .row.g-4 > [class*="col-"] {
            padding: 0 15px;
            margin-bottom: 30px;
        }

        @media (max-width: 768px) {
            .row.g-4 > [class*="col-"] {
                margin-bottom: 20px;
            }
        }

        
        .service-card-items {
            min-height: 420px;
        }

        @media (max-width: 1199px) {
            .service-card-items {
                min-height: 450px;
            }
        }

        @media (max-width: 991px) {
            .service-card-items {
                min-height: 420px;
            }
        }

        @media (max-width: 768px) {
            .service-card-items {
                min-height: auto;
            }
        }

        
        .content-wrapper p {
            display: block;
            overflow: visible;
            -webkit-line-clamp: unset;
        }

        .values-list {
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            height: 100%;
        }
