:root {
            --primary-color: #04699D;
            --secondary-color: #EF8635;
            --accent-color: #7EB5EE;
            --dark-color: #52482C;
            --light-bg: #f9f7f2;
        }

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

        .service-section {
            margin-bottom: 5vh;
            margin-top: 5vh;
            width: 100%;
            /* max-width: 1200px; */
        }

        .container {
            width: 100%;
            padding: 0 15px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 20px;
            color: var(--primary-color);
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

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

        .service-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .service-card {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            height: 100%;
        }

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

        .service-card-img {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .service-card-img::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
            transition: all 0.4s ease;
        }

        .service-card:hover .service-card-img::before {
            background: rgba(0,0,0,0.1);
        }

        .service-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            color: white;
            z-index: 2;
        }

        .service-card-text {
            font-weight: 600;
            font-size: 1.1rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            opacity: 1;
            transition: opacity 0.4s ease;
        }

        .service-card:hover .service-card-text {
            opacity: 0;
        }

        .service-text-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-text-card h4 {
            color: var(--primary-color);
            font-size: 1.4rem;
            margin-bottom: 15px;
            text-align: center;
        }

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

        .service-features li {
            padding: 10px 0;
            border-bottom: 1px dashed rgba(82, 72, 44, 0.2);
            display: flex;
            align-items: center;
            color: var(--dark-color);
            font-size: 1.05rem;
        }

        .service-features li:last-child {
            border-bottom: none;
        }

        .feature-icon {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            margin-right: 12px;
            background: rgba(239, 134, 53, 0.15);
            border-radius: 50%;
            color: var(--secondary-color);
        }

        .img-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            height: 100%;
        }

        .img-item {
            border-radius: 16px;
            overflow: hidden;
            height: 100%;
        }

        .img-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .img-item:hover img {
            transform: scale(1.05);
        }

        /* Responsive design */
        @media (max-width: 992px) {
            .service-grid {
                grid-template-columns: 1fr;
                max-width: 700px;
                margin: 0 auto;
            }

            .service-column:nth-child(1) {
                grid-row: 2;
            }

            .service-column:nth-child(2) {
                grid-row: 1;
            }

            .service-column:nth-child(3) {
                grid-row: 3;
            }
        }

        @media (max-width: 576px) {
            .img-grid {
                grid-template-columns: 1fr;
            }
            
            .service-text-card {
                padding: 20px;
            }
            
            .service-features li {
                font-size: 0.95rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }