   <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }
        
        /* Top Social Bar */
        .social-bar {
            background: linear-gradient(135deg, #3d9b8f 0%, #4aa89c 100%);
            padding: 10px 0;
            text-align: right;
        }
        
        .social-bar .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .social-icons {
            display: flex;
            justify-content: flex-end;
            gap: 20px;
        }
        
        .social-icons a {
            color: white;
            font-size: 20px;
            opacity: 0.9;
            transition: opacity 0.3s;
        }
        
        .social-icons a:hover {
            opacity: 1;
        }
        
        /* Navigation */
        nav {
            background: #1a3d47;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        nav .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
        }
        
        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
            list-style: none;
        }
        
        .nav-links a {
            color: #b8cfd4;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #4aa89c;
        }
        
        .phone-btn {
            background: transparent;
            border: 2px solid #4aa89c;
            color: #4aa89c;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .phone-btn:hover {
            background: #4aa89c;
            color: white;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(26, 61, 71, 0.9), rgba(26, 61, 71, 0.9)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%231a3d47" width="1200" height="400"/></svg>');
            background-size: cover;
            background-position: center;
            padding: 100px 0 80px;
            text-align: center;
            color: white;
        }
        
        .page-header h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .page-header p {
            font-size: 20px;
            color: #d4e0e3;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Services Overview */
        .services-overview {
            padding: 80px 0;
        }
        
        .services-overview .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .overview-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .overview-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .overview-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
		
		
        
        .overview-icon {
			width: 80px;
			height: 80px;
			background: linear-gradient(135deg, #4aa89c 0%, #3d9b8f 100%);
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			margin: 0 auto 25px;
			font-size: 32px; /* REDUCED from 40px */
			color: white;
			box-shadow: 0 8px 25px rgba(74, 168, 156, 0.25);
		}
        
        .overview-card h3 {
            color: #1a3d47;
            font-size: 24px;
            margin-bottom: 15px;
        }
        
        .overview-card p {
            color: #666;
            line-height: 1.8;
        }
        
        /* Detailed Services */
        .service-detail {
            background: white;
            margin-bottom: 60px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .service-detail-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }
        
        .service-image {
            background: linear-gradient(135deg, #3d9b8f 0%, #4aa89c 100%);
            min-height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 80px;
			overflow: hidden;
			position: relative;
        }
		
		/* NEW RULE */
		.service-image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			position: absolute;
			top: 0;
			left: 0;
}
        
        .service-text {
            padding: 50px;
        }
        
        .service-text h2 {
            color: #1a3d47;
            font-size: 32px;
            margin-bottom: 20px;
        }
        
        .service-text p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .service-features {
            list-style: none;
            margin-top: 25px;
        }
        
        .service-features li {
            color: #666;
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            line-height: 1.6;
        }
        
        .service-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #4aa89c;
            font-weight: bold;
            font-size: 20px;
        }
        
        .service-cta {
            margin-top: 30px;
        }
        
        .service-btn {
            display: inline-block;
            background: #4aa89c;
            color: white;
            padding: 15px 40px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }
        
        .service-btn:hover {
            background: #3d9b8f;
        }
        
        /* Pricing Section */
        .pricing-section {
            background: #1a3d47;
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .pricing-section .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .pricing-section h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }
        
        .pricing-section p {
            color: #d4e0e3;
            font-size: 18px;
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .pricing-card {
            background: white;
            color: #333;
            padding: 50px 40px;
            border-radius: 10px;
            transition: transform 0.3s;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
        }
        
        .pricing-card.featured {
            background: #4aa89c;
            color: white;
            transform: scale(1.05);
        }
        
        .pricing-card.featured h3,
        .pricing-card.featured .price {
            color: white;
        }
        
        .pricing-card h3 {
            color: #1a3d47;
            font-size: 28px;
            margin-bottom: 20px;
        }
        
        .price {
            color: #4aa89c;
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .pricing-card.featured .price {
            color: white;
        }
        
        .period {
            color: #666;
            font-size: 16px;
            margin-bottom: 30px;
        }
        
        .pricing-card.featured .period {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .pricing-features li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
        }
        
        .pricing-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #4aa89c;
            font-weight: bold;
        }
        
        .pricing-card.featured .pricing-features li:before {
            color: white;
        }
        
        .pricing-btn {
            display: inline-block;
            background: #4aa89c;
            color: white;
            padding: 15px 40px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }
        
        .pricing-card.featured .pricing-btn {
            background: white;
            color: #4aa89c;
        }
        
        .pricing-btn:hover {
            background: #3d9b8f;
        }
        
        .pricing-card.featured .pricing-btn:hover {
            background: #f0f0f0;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            text-align: center;
            background: white;
        }
        
        .cta-section .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .cta-section h2 {
            color: #1a3d47;
            font-size: 42px;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            color: #666;
            font-size: 18px;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }
        
        .cta-btn-primary {
            background: #4aa89c;
            color: white;
            padding: 18px 50px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: background 0.3s;
        }
        
        .cta-btn-primary:hover {
            background: #3d9b8f;
        }
        
        .cta-btn-secondary {
            background: transparent;
            color: #4aa89c;
            padding: 18px 50px;
            border: 2px solid #4aa89c;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s;
        }
        
        .cta-btn-secondary:hover {
            background: #4aa89c;
            color: white;
        }
        
        /* Footer */
        footer {
            background: #1a3d47;
            color: #b8cfd4;
            padding: 60px 0 30px;
        }
        
        footer .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 20px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section a {
            color: #b8cfd4;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: #4aa89c;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(184, 207, 212, 0.2);
        }
        
        @media (max-width: 1024px) {
            .overview-grid {
                grid-template-columns: 1fr;
            }
            
            .service-detail-content {
                grid-template-columns: 1fr;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .page-header h1 {
                font-size: 36px;
            }
            
            .service-text {
                padding: 30px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
		
		@media (max-width: 1024px) {
			.service-detail-content {
				grid-template-columns: 1fr; /* Already exists */
				display: flex; /* ADD THIS */
				flex-direction: column; /* ADD THIS */
		}
    
		/* Force images to always appear first on mobile */
			.service-image {
				order: 1; /* ADD THIS */
			}
    
		.service-text {
				order: 2; /* ADD THIS */
			}
		}
    </style>