/* Service section specific styles */

        .intro-section {
            background: linear-gradient(135deg, #013042 0%, #1a4d5c 25%, #2a6d7c 50%, #3a8d9c 75%, #4aadbc 100%);
            border-radius: 15px;
            position: relative;
            z-index: 1;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            padding: 3rem 2rem;
            overflow: hidden;
            color: white;
        }

        /* Add animated background elements */
        .intro-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="25" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.12)"/><circle cx="25" cy="75" r="1.5" fill="rgba(255,255,255,0.06)"/><circle cx="75" cy="75" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            animation: sparkle 20s linear infinite;
            pointer-events: none;
        }

        @keyframes sparkle {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(-100px) translateY(-100px); }
        }

        .intro-section .section-title {
            color: white;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 2;
        }

        .intro-section .lead {
            color: #e8f4f8;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 2;
        }

        .intro-section .sub-lead {
            color: #b8e0ea;
            font-size: 1.3rem;
            line-height: 1.6;
            font-weight: 400;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 2;
        }

        /* Enhanced button styling for intro section */
        .intro-section .btn-link {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
            z-index: 2;
            display: inline-block;
            margin: 0.25rem;
        }

        .intro-section .btn-link:hover {
            color: #013042;
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(255, 255, 255, 0.9);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
            text-decoration: none;
        }

        .section-title {
            margin-bottom: 1.5rem;
        }

        .divider {
            max-width: 100px;
            border-width: 2px;
            border-color: #327b8c;
            opacity: 0.8;
        }

        .service-section {
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            margin-bottom: 1.5rem;
        }
        
        .service-section:last-child {
            border-bottom: none;
        }

        .service-section h3 {
            color: #013042;
            margin-bottom: 1rem;
        }

        .service-section ul {
            padding-left: 1.5rem;
        }

        .service-section li {
            margin-bottom: 0.5rem;
        }

        /* Service layout styles */
        .icon-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 1.5rem;
            padding: 0.5rem;
        }

        .content-container {
            margin-bottom: 1.5rem;
        }

        /* Service image styles */
        .service-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            object-fit: cover;
        }

        /* Add a subtle border highlight */
        .intro-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            pointer-events: none;
            z-index: 1;
        }

        /* Responsive adjustments for intro section */
        @media (max-width: 768px) {
            .intro-section {
                padding: 2rem 1.5rem;
            }
            
            .intro-section .lead {
                font-size: 1.3rem;
            }
            
            .intro-section .sub-lead {
                font-size: 1.1rem;
            }
            
            .intro-section .btn-link {
                display: block;
                margin: 0.5rem auto;
                max-width: 280px;
            }
        }

        /* Responsive styles */
        @media (min-width: 1200px) {
            .icon-container {
                height: 100%;
            }
            
            .service-image {
                width: 100%;
                max-height: 100%;
                object-fit: cover;
            }
        }

        @media (max-width: 1199.98px) {
            .service-image {
                max-width: 120px;
                max-height: 120px;
                object-fit: contain;
            }
        }

        @media (max-width: 767.98px) {
            .service-image {
                max-width: 120px;
            }
            
            .icon-container {
                text-align: center;
            }
            
            .content-container {
                text-align: center;
            }
            
            .content-container ul {
                display: inline-block;
                text-align: left;
            }
        }
