        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

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

        body {
          font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
          line-height: 1.6;
          color: #1a1a1a;
          overflow-x: hidden;
        }

        /* Header with Logo */
        .header-logo {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          z-index: 20;
          background: rgba(255, 255, 255, 0.95);
          padding: 20px 40px;
          backdrop-filter: blur(20px);
          -webkit-backdrop-filter: blur(20px);
          border-bottom: 1px solid rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
          display: flex;
          justify-content: space-between;
          align-items: center;
        }

        .logo-container {
          display: flex;
          align-items: center;
          gap: 16px;
          animation: slideDown 0.6s ease-out;
        }

        @keyframes slideDown {
          from {
            opacity: 0;
            transform: translateY(-20px);
          }

          to {
            opacity: 1;
            transform: translateY(0);
          }
        }

        .logo-icon {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 50px;
          height: 50px;
          filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
          transition: transform 0.3s ease, filter 0.3s ease;
          animation: logoAppear 0.8s ease-out;
        }

        @keyframes logoAppear {
          from {
            opacity: 0;
            transform: rotate(-180deg) scale(0.5);
          }

          to {
            opacity: 1;
            transform: rotate(0) scale(1);
          }
        }

        .logo-icon:hover {
          transform: scale(1.08) translateY(-1px);
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
        }

        .logo-icon svg {
          width: 100%;
          height: 100%;
        }

        .logo-text {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          gap: 2px;
        }

        .logo-text .company-main {
          font-family: 'Poppins', 'Inter', sans-serif;
          font-size: 1.45rem;
          font-weight: 700;
          color: #0f172a;
          letter-spacing: -0.02em;
          line-height: 1.1;
          position: relative;
        }

        .logo-text .company-sub {
          font-family: 'Inter', sans-serif;
          font-size: 0.7rem;
          font-weight: 500;
          color: #6b7280;
          letter-spacing: 0.15em;
          text-transform: uppercase;
          margin-left: 1px;
          opacity: 0.9;
        }

        /* Header Navigation */
        .header-nav {
          display: flex;
          align-items: center;
          gap: 25px;
          animation: fadeIn 0.8s ease-out 0.3s both;
          margin-left: auto;
        }

        @keyframes fadeIn {
          from {
            opacity: 0;
            transform: translateX(20px);
          }

          to {
            opacity: 1;
            transform: translateX(0);
          }
        }

        .nav-blog-link {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          padding: 10px 20px;
          background: linear-gradient(135deg, #3b82f6, #2563eb);
          color: white;
          text-decoration: none;
          border-radius: 12px;
          font-weight: 600;
          font-size: 0.95rem;
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
          position: relative;
          overflow: hidden;
        }

        .nav-blog-link::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(135deg, #2563eb, #1d4ed8);
          opacity: 0;
          transition: opacity 0.3s ease;
        }

        .nav-blog-link:hover {
          transform: translateY(-2px);
          box-shadow: 0 6px 25px rgba(59, 130, 246, 0.25);
        }

        .nav-blog-link:hover::before {
          opacity: 1;
        }

        .nav-blog-link svg {
          position: relative;
          z-index: 1;
          transition: transform 0.3s ease;
        }

        .nav-blog-link span {
          position: relative;
          z-index: 1;
          letter-spacing: 0.025em;
        }

        .nav-blog-link:hover svg {
          transform: rotate(-5deg) scale(1.1);
        }

        .nav-blog-link:active {
          transform: translateY(0);
          box-shadow: 0 3px 10px rgba(59, 130, 246, 0.2);
        }

        /* Home Link Styles */
        .nav-home-link {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          padding: 10px 20px;
          background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
          color: white;
          text-decoration: none;
          border-radius: 12px;
          font-weight: 600;
          font-size: 0.95rem;
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
          position: relative;
          overflow: hidden;
        }

        .nav-home-link::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
          opacity: 0;
          transition: opacity 0.3s ease;
        }

        .nav-home-link:hover {
          transform: translateY(-2px);
          box-shadow: 0 6px 25px rgba(59, 130, 246, 0.35);
        }

        .nav-home-link:hover::before {
          opacity: 1;
        }

        .nav-home-link svg {
          position: relative;
          z-index: 1;
          transition: transform 0.3s ease;
        }

        .nav-home-link span {
          position: relative;
          z-index: 1;
          letter-spacing: 0.025em;
        }

        .nav-home-link:hover svg {
          transform: scale(1.1);
        }

        .nav-home-link:active {
          transform: translateY(0);
          box-shadow: 0 3px 10px rgba(59, 130, 246, 0.2);
        }

        /* Medium screens */
        @media (min-width: 992px) {
          .logo-container {
            max-width: 1200px;
          }
        }

        /* Large screens */
        @media (min-width: 1400px) {
          .logo-container {
            max-width: 1400px;
            padding: 0 60px;
          }
        }

        /* Mobile responsive for navigation */
        @media (max-width: 768px) {
          .header-logo {
            padding: 12px 15px;
            flex-direction: row;
            justify-content: space-between;
          }

          .logo-container {
            gap: 10px;
          }

          .logo-icon {
            width: 40px;
            height: 40px;
          }

          .logo-text .company-main {
            font-size: 1.2rem;
          }

          .logo-text .company-sub {
            font-size: 0.6rem;
            display: none;
          }

          .header-nav {
            margin-left: auto;
          }

          .nav-blog-link {
            padding: 8px 14px;
            font-size: 0.85rem;
          }

          .nav-blog-link span {
            display: none;
          }

          .nav-blog-link svg {
            width: 20px;
            height: 20px;
          }

          .nav-home-link {
            padding: 8px 14px;
            font-size: 0.85rem;
          }

          .nav-home-link span {
            display: none;
          }

          .nav-home-link svg {
            width: 20px;
            height: 20px;
          }
        }

        @media (max-width: 480px) {
          .header-logo {
            padding: 10px 10px;
          }

          .logo-container {
            gap: 8px;
          }

          .logo-icon {
            width: 35px;
            height: 35px;
          }

          .logo-icon svg {
            width: 100%;
            height: 100%;
          }

          .logo-text .company-main {
            font-size: 1rem;
          }

          .logo-text .company-sub {
            display: none;
          }

          .nav-blog-link {
            padding: 8px;
            border-radius: 10px;
            min-width: 36px;
            min-height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
          }

          .nav-blog-link span {
            display: none;
          }

          .nav-blog-link svg {
            width: 20px;
            height: 20px;
          }
        }

        @media (max-width: 375px) {
          .header-logo {
            padding: 8px 8px;
          }

          .logo-icon {
            width: 32px;
            height: 32px;
          }

          .logo-text .company-main {
            font-size: 0.9rem;
            letter-spacing: -0.02em;
          }

          .logo-container {
            gap: 6px;
          }
        }

        /* Header Image Section */
        .header-image {
          position: relative;
          width: 100%;
          height: 60vh;
          overflow: hidden;
          background: #ffffff;
        }

        .header-image .main-img {
          width: 100%;
          height: 100%;
          object-fit: contain;
          object-position: center;
          display: block;
          filter: brightness(1.05);
          background: #f8f9fa;
        }

        /* Desktop specific styles - Centered container 1200px */
        @media (min-width: 992px) {
          body {
            background: #f8f9fa;
          }

          /* Create centered container */
          .page-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
            position: relative;
          }

          .header-logo {
            max-width: 1200px;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
          }

          .logo-container {
            max-width: 1200px;
            padding: 0;
          }

          .header-image {
            height: 70vh;
            max-height: 650px;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
          }

          .header-image .main-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            background: #ffffff;
          }

          .content-block {
            max-width: 1200px;
            margin: -80px auto 0;
            padding: 70px 60px;
            border-radius: 40px 40px 0 0;
          }

          .content-inner {
            max-width: 800px;
          }

          .main-title-primary {
            font-size: 3.2rem;
            margin-bottom: 12px;
          }

          .main-title-brand {
            font-size: 1.6rem;
          }

          .main-title-services {
            font-size: 1.15rem;
            margin-top: 10px;
          }

          .company-name {
            font-size: 1.4rem;
            letter-spacing: 5px;
          }

          .divider {
            width: 80px;
            height: 4px;
            margin: 30px auto;
          }
        }

        @media (min-width: 1400px) {
          .page-container {
            max-width: 1400px;
          }

          .header-logo {
            max-width: 1400px;
          }

          .logo-container {
            max-width: 1400px;
            padding: 0;
          }

          .header-image {
            height: 75vh;
            max-height: 700px;
            max-width: 1400px;
          }

          .content-block {
            max-width: 1400px;
            padding: 80px 80px;
            margin-top: -100px;
          }

          .content-inner {
            max-width: 900px;
          }

          .main-title-primary {
            font-size: 3.8rem;
          }

          .main-title-brand {
            font-size: 1.9rem;
          }

          .main-title-services {
            font-size: 1.25rem;
          }

          .company-name {
            font-size: 1.5rem;
          }
        }

        .header-image::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          height: 150px;
          background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, transparent 100%);
          pointer-events: none;
        }

        @media (min-width: 992px) {
          .header-image::after {
            display: none;
          }
        }

        /* Tablet styles */
        @media (max-width: 991px) and (min-width: 768px) {
          .header-image {
            height: 50vh;
          }

          .header-image .main-img {
            object-fit: contain;
            background: #ffffff;
          }
        }

        /* Mobile styles */
        @media (max-width: 767px) {
          .header-image {
            height: 45vh;
            min-height: 300px;
          }

          .header-image .main-img {
            object-fit: contain;
            background: #ffffff;
          }

          .content-block {
            margin-top: -12vh;
            padding: 60px 20px;
            border-radius: 35px 35px 0 0;
          }
        }

        /* Small mobile styles */
        @media (max-width: 480px) {
          .header-image {
            height: 40vh;
            min-height: 250px;
          }

          .header-image .main-img {
            object-fit: contain;
            background: #ffffff;
          }

          .content-block {
            margin-top: -15vh;
            padding: 50px 15px;
            border-radius: 30px 30px 0 0;
          }
        }

        /* Content Block with Premium Design */
        .content-block {
          position: relative;
          margin-top: -9vh;
          background: #ffffff;
          min-height: 220px;
          padding: 70px 20px;
          box-shadow:
            0 -30px 70px rgba(0, 0, 0, 0.08),
            0 -10px 40px rgba(0, 0, 0, 0.04),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
          z-index: 10;
          border-radius: 40px 40px 0 0;
          text-align: center;
          overflow: hidden;
        }

        .content-block::before {
          content: '';
          position: absolute;
          top: 0;
          left: 50%;
          transform: translateX(-50%);
          width: 120px;
          height: 5px;
          background: linear-gradient(90deg, #2563eb 0%, #3b82f6 50%, #2563eb 100%);
          border-radius: 0 0 3px 3px;
          animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {

          0%,
          100% {
            opacity: 1;
            transform: translateX(-50%) scaleX(1);
          }

          50% {
            opacity: 0.8;
            transform: translateX(-50%) scaleX(1.1);
          }
        }

        .content-inner {
          max-width: 800px;
          margin: 0 auto;
          animation: fadeInUp 0.8s ease-out;
        }

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

          to {
            opacity: 1;
            transform: translateY(0);
          }
        }

        .main-title {
          color: #0f172a;
          font-weight: 900;
          margin-bottom: 20px;
          position: relative;
          display: block;
          text-align: center;
        }

        .main-title-primary {
          display: block;
          font-size: 3.5rem;
          letter-spacing: -1px;
          text-transform: uppercase;
          margin-bottom: 10px;
          line-height: 1.1;
          background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
        }

        .main-title-brand {
          display: block;
          font-size: 1.8rem;
          font-weight: 700;
          letter-spacing: 3px;
          margin-bottom: 15px;
          color: #334155;
          text-transform: uppercase;
          position: relative;
          padding: 10px 0;
        }

        .main-title-brand::before,
        .main-title-brand::after {
          content: '';
          position: absolute;
          top: 50%;
          width: 60px;
          height: 2px;
          background: linear-gradient(90deg, transparent, #3b82f6);
          transform: translateY(-50%);
        }

        .main-title-brand::before {
          left: 50%;
          margin-left: -150px;
        }

        .main-title-brand::after {
          right: 50%;
          margin-right: -150px;
          background: linear-gradient(90deg, #3b82f6, transparent);
        }

        .main-title-services {
          display: block;
          font-size: 1.1rem;
          font-weight: 600;
          letter-spacing: 0.5px;
          margin-top: 5px;
          color: #64748b;
          text-transform: none;
        }

        .divider {
          width: 60px;
          height: 3px;
          background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
          margin: 20px auto;
          border-radius: 2px;
          animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {

          0%,
          100% {
            transform: scaleX(1);
            opacity: 1;
          }

          50% {
            transform: scaleX(1.2);
            opacity: 0.8;
          }
        }

        .company-name {
          color: #475569;
          font-size: 1.3rem;
          font-weight: 400;
          letter-spacing: 4px;
          margin-top: 15px;
          text-transform: uppercase;
          position: relative;
          display: inline-flex;
          align-items: center;
          gap: 15px;
        }

        .company-name::before,
        .company-name::after {
          content: '';
          width: 8px;
          height: 8px;
          background: #2563eb;
          border-radius: 50%;
          animation: blink 3s ease-in-out infinite;
        }

        @keyframes blink {

          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }

          50% {
            opacity: 0.5;
            transform: scale(0.8);
          }
        }

        .badge {
          display: inline-block;
          margin-top: 25px;
          padding: 8px 20px;
          background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
          border: 1px solid rgba(37, 99, 235, 0.2);
          border-radius: 50px;
          font-size: 0.85rem;
          color: #2563eb;
          font-weight: 600;
          letter-spacing: 0.5px;
          animation: fadeIn 1.2s ease-out 0.5s both;
        }

        @media (min-width: 992px) {
          .badge {
            font-size: 0.95rem;
            padding: 10px 30px;
            margin-top: 35px;
          }
        }

        @keyframes fadeIn {
          from {
            opacity: 0;
          }

          to {
            opacity: 1;
          }
        }

        /* Trust Section Styles */
        .trust-section {
          margin-top: 40px;
          animation: fadeInUp 1s ease-out 0.3s both;
        }

        .usp-text {
          font-size: 1.05rem;
          line-height: 1.7;
          color: #475569;
          max-width: 700px;
          margin: 0 auto 35px;
          font-weight: 400;
          letter-spacing: 0.2px;
        }

        .trust-signals {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
          gap: 20px;
          max-width: 650px;
          margin: 0 auto;
        }

        .trust-item {
          display: flex;
          flex-direction: column;
          align-items: center;
          padding: 15px 10px;
          background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(59, 130, 246, 0.05) 100%);
          border: 1px solid rgba(37, 99, 235, 0.1);
          border-radius: 12px;
          transition: all 0.3s ease;
          animation: scaleIn 0.5s ease-out calc(0.5s + var(--delay, 0s)) both;
        }

        .trust-item:nth-child(1) {
          --delay: 0.1s;
        }

        .trust-item:nth-child(2) {
          --delay: 0.2s;
        }

        .trust-item:nth-child(3) {
          --delay: 0.3s;
        }

        .trust-item:nth-child(4) {
          --delay: 0.4s;
        }

        .trust-item:hover {
          transform: translateY(-3px);
          box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
          background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(59, 130, 246, 0.08) 100%);
        }

        @keyframes scaleIn {
          from {
            opacity: 0;
            transform: scale(0.8);
          }

          to {
            opacity: 1;
            transform: scale(1);
          }
        }

        .trust-icon {
          width: 40px;
          height: 40px;
          background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
          border-radius: 10px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 12px;
        }

        .trust-icon svg {
          width: 22px;
          height: 22px;
          color: white;
        }

        .trust-content {
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 4px;
        }

        .trust-number {
          font-size: 1.4rem;
          font-weight: 800;
          color: #1e293b;
          line-height: 1;
        }

        .trust-label {
          font-size: 0.75rem;
          color: #64748b;
          font-weight: 500;
          text-transform: uppercase;
          letter-spacing: 0.5px;
          text-align: center;
          line-height: 1.2;
        }

        /* Contact Section Styles */
        .hero-contact-section {
          margin-top: 45px;
          padding-top: 35px;
          border-top: 1px solid rgba(0, 0, 0, 0.08);
          text-align: center;
          animation: fadeInUp 1s ease-out 0.6s both;
          background: rgba(255, 255, 255, 0.98);
          border-radius: 20px;
          padding: 35px 30px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .hero-contact-header {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 8px;
          margin-bottom: 15px;
        }

        .hero-contact-header svg {
          color: #22c55e;
          animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {

          0%,
          100% {
            transform: scale(1);
          }

          50% {
            transform: scale(1.1);
          }
        }

        .contact-label {
          font-size: 0.85rem;
          color: #22c55e;
          font-weight: 600;
          text-transform: uppercase;
          letter-spacing: 1px;
        }

        .phone-number {
          display: block;
          font-size: 2rem;
          font-weight: 800;
          color: #1e293b;
          text-decoration: none;
          margin: 10px 0;
          transition: all 0.3s ease;
          letter-spacing: 1px;
        }

        .phone-number:hover {
          color: #2563eb;
          transform: scale(1.05);
        }

        .contact-hours {
          font-size: 0.9rem;
          color: #64748b;
          margin: 10px 0 25px;
        }

        .call-button {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          gap: 10px;
          padding: 14px 35px;
          background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
          color: white;
          border: none;
          border-radius: 50px;
          font-size: 1rem;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s ease;
          text-decoration: none;
          box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .call-button:hover {
          transform: translateY(-2px);
          box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
          background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
        }

        .call-button:active {
          transform: translateY(0);
        }

        .call-button svg {
          animation: ring 1s ease-in-out infinite;
        }

        @keyframes ring {

          0%,
          100% {
            transform: rotate(0deg);
          }

          10% {
            transform: rotate(-10deg);
          }

          20% {
            transform: rotate(10deg);
          }

          30% {
            transform: rotate(-10deg);
          }

          40% {
            transform: rotate(10deg);
          }

          50% {
            transform: rotate(0deg);
          }
        }

        .mobile-only {
          display: none;
        }

        .desktop-only {
          display: inline-flex;
        }

        @media (max-width: 768px) {
          .mobile-only {
            display: inline-flex;
          }

          .desktop-only {
            display: none;
          }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
          .trust-section {
            margin-top: 30px;
          }

          .usp-text {
            font-size: 0.95rem;
            margin-bottom: 25px;
            padding: 0 10px;
          }

          .trust-signals {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 0 10px;
          }

          .trust-item {
            padding: 12px 8px;
          }

          .trust-icon {
            width: 35px;
            height: 35px;
          }

          .trust-number {
            font-size: 1.2rem;
          }

          .trust-label {
            font-size: 0.7rem;
          }

          .hero-contact-section {
            margin-top: 35px;
            padding: 30px 25px;
            border-radius: 16px;
          }

          .phone-number {
            font-size: 1.6rem;
          }

          .contact-hours {
            font-size: 0.85rem;
            margin-bottom: 20px;
          }

          .call-button {
            padding: 12px 30px;
            font-size: 0.95rem;
            width: 90%;
            max-width: 300px;
            margin: 0 auto;
            display: flex;
          }

          .header-logo {
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.96);
          }

          .logo-icon {
            width: 45px;
            height: 45px;
          }

          .logo-text .company-main {
            font-size: 1.3rem;
          }

          .logo-text .company-sub {
            font-size: 0.65rem;
            letter-spacing: 1.2px;
          }

          .header-image {
            height: 45vh;
          }

          .content-block {
            margin-top: -15vh;
            padding: 50px 20px;
            border-radius: 30px 30px 0 0;
          }

          .main-title-primary {
            font-size: 2.2rem;
          }

          .main-title-brand {
            font-size: 1.3rem;
            letter-spacing: 2px;
          }

          .main-title-brand::before,
          .main-title-brand::after {
            width: 40px;
          }

          .main-title-brand::before {
            margin-left: -100px;
          }

          .main-title-brand::after {
            margin-right: -100px;
          }

          .main-title-services {
            font-size: 0.95rem;
          }

          .company-name {
            font-size: 1.1rem;
            letter-spacing: 3px;
            gap: 10px;
          }

          .company-name::before,
          .company-name::after {
            width: 6px;
            height: 6px;
          }

          .badge {
            font-size: 0.8rem;
            padding: 6px 16px;
          }
        }

        @media (max-width: 480px) {
          .trust-section {
            margin-top: 25px;
          }

          .usp-text {
            font-size: 0.85rem;
            line-height: 1.6;
            margin-bottom: 20px;
          }

          .trust-signals {
            gap: 12px;
          }

          .trust-item {
            padding: 10px 5px;
          }

          .trust-icon {
            width: 32px;
            height: 32px;
            margin-bottom: 8px;
          }

          .trust-icon svg {
            width: 18px;
            height: 18px;
          }

          .trust-number {
            font-size: 1.1rem;
          }

          .trust-label {
            font-size: 0.65rem;
          }

          .hero-contact-section {
            margin-top: 30px;
            padding: 25px 20px;
            border-radius: 15px;
          }

          .contact-label {
            font-size: 0.75rem;
          }

          .phone-number {
            font-size: 1.4rem;
          }

          .contact-hours {
            font-size: 0.8rem;
          }

          .call-button {
            padding: 14px 25px;
            font-size: 0.9rem;
            width: 95%;
            position: relative;
            bottom: auto;
            margin: 0 auto;
            display: flex;
          }

          .header-logo {
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.97);
          }

          .logo-container {
            gap: 12px;
          }

          .logo-icon {
            width: 40px;
            height: 40px;
          }

          .logo-icon svg {
            width: 40px;
            height: 40px;
          }

          .logo-text .company-main {
            font-size: 1.1rem;
            letter-spacing: -0.3px;
          }

          .logo-text .company-sub {
            font-size: 0.6rem;
            letter-spacing: 1px;
          }

          .header-image {
            height: 40vh;
          }

          .header-image::after {
            height: 100px;
          }

          .content-block {
            margin-top: -18vh;
            padding: 40px 15px;
            min-height: 180px;
          }

          .content-block::before {
            width: 80px;
            height: 4px;
          }

          .main-title-primary {
            font-size: 1.8rem;
            letter-spacing: -0.5px;
          }

          .main-title-brand {
            font-size: 1.1rem;
            letter-spacing: 1.5px;
          }

          .main-title-brand::before,
          .main-title-brand::after {
            display: none;
          }

          .main-title-services {
            font-size: 0.85rem;
          }

          .divider {
            width: 50px;
            height: 2px;
            margin: 15px auto;
          }

          .company-name {
            font-size: 0.95rem;
            letter-spacing: 2px;
          }

          .badge {
            font-size: 0.75rem;
            padding: 5px 14px;
            margin-top: 20px;
          }
        }

        /* Services Section Styles */
        .services-section {
          background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
          padding: 80px 20px;
          margin-top: 0;
        }

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

        @media (min-width: 1400px) {
          .services-container {
            max-width: 1400px;
          }
        }

        .services-title {
          font-size: 2.5rem;
          font-weight: 800;
          text-align: center;
          color: #0f172a;
          margin-bottom: 20px;
          letter-spacing: -0.5px;
        }

        .services-subtitle {
          text-align: center;
          color: #64748b;
          font-size: 1.1rem;
          line-height: 1.7;
          max-width: 800px;
          margin: 0 auto 60px;
        }

        .services-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
          gap: 30px;
          margin-bottom: 100px;
        }

        .service-card {
          background: white;
          border-radius: 16px;
          overflow: hidden;
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          transition: all 0.3s ease;
          cursor: pointer;
        }

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

        .service-image {
          position: relative;
          width: 100%;
          height: 220px;
          overflow: hidden;
        }

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

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

        .service-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
          opacity: 0;
          transition: opacity 0.3s ease;
        }

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

        .service-content {
          padding: 25px;
        }

        .service-content .service-title {
          font-size: 1.4rem;
          font-weight: 700;
          color: #1e293b;
          margin-bottom: 10px;
        }

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

        .service-link {
          color: #2563eb;
          font-weight: 600;
          text-decoration: none;
          font-size: 0.95rem;
          display: inline-flex;
          align-items: center;
          transition: all 0.3s ease;
        }

        .service-link:hover {
          color: #1d4ed8;
          transform: translateX(3px);
        }

        .services-cta {
          text-align: center;
          display: flex;
          gap: 20px;
          justify-content: center;
          flex-wrap: wrap;
        }

        .cta-button {
          padding: 16px 40px;
          border-radius: 50px;
          font-size: 1rem;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s ease;
          border: none;
        }

        .cta-button.primary {
          background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
          color: white;
          box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .cta-button.primary:hover {
          transform: translateY(-2px);
          box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
        }

        .cta-button.secondary {
          background: white;
          color: #2563eb;
          border: 2px solid #2563eb;
        }

        .cta-button.secondary:hover {
          background: #2563eb;
          color: white;
        }

        /* Mobile Responsive for Services */
        @media (max-width: 768px) {
          .services-section {
            padding: 60px 15px;
          }

          .services-title {
            font-size: 2rem;
          }

          .services-subtitle {
            font-size: 1rem;
            margin-bottom: 40px;
          }

          .services-grid {
            grid-template-columns: 1fr;
            gap: 20px;
          }

          .service-image {
            height: 180px;
          }

          .service-content {
            padding: 20px;
          }

          .service-content .service-title {
            font-size: 1.2rem;
          }

          .cta-button {
            padding: 14px 30px;
            font-size: 0.95rem;
          }
        }

        @media (max-width: 480px) {
          .services-section {
            padding: 50px 10px;
          }

          .services-title {
            font-size: 1.6rem;
          }

          .services-subtitle {
            font-size: 0.9rem;
          }

          .services-grid {
            gap: 15px;
          }

          .service-image {
            height: 150px;
          }

          .services-cta {
            flex-direction: column;
            align-items: center;
          }

          .cta-button {
            width: 100%;
            max-width: 280px;
          }
        }

        /* Airport Services Section Styles */
        .airport-services-section {
          background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
          padding: 90px 20px;
          position: relative;
        }

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

        .airport-title {
          font-size: 2.8rem;
          font-weight: 800;
          text-align: center;
          margin-bottom: 20px;
          color: #1e293b;
          background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
        }

        .airport-subtitle {
          font-size: 1.2rem;
          text-align: center;
          margin-bottom: 50px;
          color: #64748b;
          max-width: 700px;
          margin-left: auto;
          margin-right: auto;
          line-height: 1.6;
        }

        .airport-intro {
          text-align: center;
          margin-bottom: 60px;
          padding: 40px;
          background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(147, 197, 253, 0.05) 100%);
          border-radius: 20px;
          border: 1px solid rgba(59, 130, 246, 0.1);
        }

        .airport-intro-content h3 {
          font-size: 1.5rem;
          font-weight: 700;
          margin-bottom: 15px;
          color: #1e293b;
        }

        .airport-intro-content p {
          color: #475569;
          line-height: 1.7;
          max-width: 600px;
          margin: 0 auto;
        }

        .airports-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
          gap: 30px;
          margin-bottom: 60px;
        }

        .airport-card {
          background: #ffffff;
          border-radius: 20px;
          overflow: hidden;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
          transition: all 0.3s ease;
          border: 1px solid #e2e8f0;
          position: relative;
        }

        .airport-card:hover {
          transform: translateY(-8px);
          box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .airport-card.featured {
          border: 2px solid #3b82f6;
          background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
        }

        .airport-card.featured::before {
          content: '🏆 Hauptstandort';
          position: absolute;
          top: 15px;
          right: 15px;
          background: linear-gradient(45deg, #3b82f6, #60a5fa);
          color: white;
          padding: 5px 12px;
          border-radius: 15px;
          font-size: 0.75rem;
          font-weight: 600;
          z-index: 3;
        }

        .airport-image {
          position: relative;
          height: 200px;
          overflow: hidden;
        }

        .airport-image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center;
          transition: transform 0.3s ease;
        }

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

        .airport-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(59, 130, 246, 0.3) 100%);
          display: flex;
          align-items: center;
          justify-content: center;
          opacity: 0;
          transition: opacity 0.3s ease;
        }

        .airport-card:hover .airport-overlay {
          opacity: 1;
        }

        .airport-icon {
          font-size: 3rem;
          filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
        }

        .airport-content {
          padding: 25px;
        }

        .airport-content h3 {
          font-size: 1.4rem;
          font-weight: 700;
          margin-bottom: 8px;
          color: #1e293b;
        }

        .airport-location {
          color: #3b82f6;
          font-size: 0.9rem;
          font-weight: 600;
          margin-bottom: 15px;
        }

        .airport-content p {
          color: #64748b;
          line-height: 1.6;
          margin-bottom: 20px;
          font-size: 0.95rem;
        }

        .airport-services {
          display: flex;
          flex-wrap: wrap;
          gap: 8px;
        }

        .airport-services span {
          background: linear-gradient(45deg, #e0f2fe, #bae6fd);
          color: #0369a1;
          padding: 5px 12px;
          border-radius: 15px;
          font-size: 0.8rem;
          font-weight: 600;
          border: 1px solid #7dd3fc;
        }

        .airport-cta {
          text-align: center;
          padding: 50px 40px;
          background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
          border-radius: 25px;
          color: white;
          position: relative;
          overflow: hidden;
        }

        .airport-cta::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
          animation: shine-cta 6s ease-in-out infinite;
        }

        @keyframes shine-cta {

          0%,
          100% {
            transform: translateX(-100%);
          }

          50% {
            transform: translateX(100%);
          }
        }

        .airport-cta h3 {
          font-size: 2rem;
          font-weight: 700;
          margin-bottom: 15px;
          position: relative;
          z-index: 2;
        }

        .airport-cta p {
          font-size: 1.1rem;
          margin-bottom: 30px;
          opacity: 0.9;
          position: relative;
          z-index: 2;
        }

        .airport-cta-button {
          background: linear-gradient(45deg, #3b82f6, #60a5fa);
          color: white;
          border: none;
          padding: 18px 40px;
          border-radius: 50px;
          font-size: 1.1rem;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s ease;
          box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
          position: relative;
          z-index: 2;
        }

        .airport-cta-button:hover {
          transform: translateY(-3px);
          box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
          background: linear-gradient(45deg, #2563eb, #3b82f6);
        }

        /* Airport Services Mobile Responsive */
        @media (max-width: 768px) {
          .airport-services-section {
            padding: 70px 15px;
          }

          .airport-title {
            font-size: 2.2rem;
          }

          .airport-subtitle {
            font-size: 1rem;
            margin-bottom: 40px;
          }

          .airport-intro {
            padding: 30px 20px;
            margin-bottom: 40px;
          }

          .airports-grid {
            grid-template-columns: 1fr;
            gap: 20px;
          }

          .airport-content {
            padding: 20px;
          }

          .airport-cta {
            padding: 40px 25px;
          }
        }

        @media (max-width: 480px) {
          .airport-services-section {
            padding: 60px 10px;
          }

          .airport-title {
            font-size: 1.8rem;
          }

          .airports-grid {
            grid-template-columns: 1fr;
            gap: 15px;
          }

          .airport-card {
            border-radius: 15px;
          }

          .airport-image {
            height: 160px;
          }

          .airport-content {
            padding: 20px 15px;
          }

          .airport-content h3 {
            font-size: 1.2rem;
          }

          .airport-cta {
            padding: 35px 20px;
          }

          .airport-cta h3 {
            font-size: 1.6rem;
          }
        }

        /* Testimonials Section Styles */
        .testimonials-section {
          background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
          padding: 80px 20px;
          position: relative;
        }

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

        @media (min-width: 1400px) {
          .testimonials-container {
            max-width: 1400px;
          }
        }

        .section-title {
          font-size: 2.5rem;
          font-weight: 800;
          text-align: center;
          color: #0f172a;
          margin-bottom: 20px;
        }

        .section-subtitle {
          text-align: center;
          color: #64748b;
          font-size: 1.1rem;
          margin-bottom: 60px;
        }

        /* Statistics Grid */
        .stats-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 30px;
          margin-bottom: 80px;
        }

        .stat-card {
          background: white;
          padding: 30px;
          border-radius: 16px;
          text-align: center;
          position: relative;
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          transition: transform 0.3s ease;
        }

        .stat-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .stat-icon {
          position: absolute;
          top: 15px;
          right: 20px;
          font-size: 1.5rem;
          opacity: 0.3;
        }

        .stat-number {
          font-size: 3rem;
          font-weight: 800;
          color: #2563eb;
          line-height: 1;
          display: inline-block;
        }

        .stat-suffix {
          font-size: 2rem;
          font-weight: 800;
          color: #2563eb;
          display: inline-block;
        }

        .stat-label {
          color: #64748b;
          font-size: 0.95rem;
          margin-top: 10px;
          font-weight: 500;
        }

        /* Reviews Section */
        .reviews-container {
          margin-bottom: 60px;
          position: relative;
        }

        .reviews-title {
          text-align: center;
          font-size: 1.8rem;
          color: #1e293b;
          margin-bottom: 40px;
        }

        .reviews-carousel {
          position: relative;
          max-width: 800px;
          margin: 0 auto;
          min-height: 250px;
        }

        .review-card {
          background: white;
          padding: 30px;
          border-radius: 16px;
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
          position: relative;
          width: 100%;
          opacity: 1;
          transform: translateX(0);
          transition: all 0.5s ease;
          height: 100%;
          display: flex;
          flex-direction: column;
        }


        .review-card:hover {
          box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
          transform: translateY(-5px);
        }

        /* New review structure styles */
        #reviews-container {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 30px;
          margin-bottom: 40px;
          align-items: stretch;
        }

        .review-footer {
          margin-top: 40px;
        }

        .review-content {
          height: 100%;
          display: flex;
          flex-direction: column;
        }

        .review__wrp {
          margin-bottom: 15px;
        }

        .review__wrp h3 {
          font-size: 1.2rem;
          font-weight: 700;
          color: #1e293b;
          margin-bottom: 5px;
        }

        .review-service {
          color: #3b82f6;
          font-size: 0.9rem;
          font-weight: 600;
        }

        .review-comment {
          flex: 1;
          color: #475569;
          font-size: 1rem;
          line-height: 1.6;
          margin-bottom: 20px;
          font-style: italic;
        }

        .review-meta {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding-top: 15px;
          border-top: 1px solid #e5e7eb;
        }

        .review-rating {
          color: #fbbf24;
          font-size: 1.2rem;
        }

        .review-meta .date {
          color: #94a3b8;
          font-size: 0.85rem;
        }

        .write-review-button-wrp {
          text-align: center;
          margin-top: 40px;
        }

        .write-review-button {
          display: inline-block;
          padding: 14px 32px;
          background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
          color: white;
          text-decoration: none;
          border-radius: 12px;
          font-weight: 600;
          font-size: 1rem;
          transition: all 0.3s ease;
          box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }

        .write-review-button:hover {
          transform: translateY(-2px);
          box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
          background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
        }

        @media (max-width: 768px) {
          #reviews-container {
            grid-template-columns: 1fr;
            gap: 20px;
          }
        }

        .review-stars {
          color: #fbbf24;
          font-size: 1.5rem;
          margin-bottom: 20px;
        }

        .review-text {
          color: #475569;
          font-size: 1.1rem;
          line-height: 1.7;
          font-style: italic;
          margin-bottom: 25px;
        }

        .review-author {
          display: flex;
          flex-direction: column;
          gap: 5px;
        }

        .review-author strong {
          color: #1e293b;
          font-size: 1.1rem;
        }

        .review-author span {
          color: #64748b;
          font-size: 0.9rem;
        }

        /* Carousel Navigation */
        .carousel-nav {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 20px;
          margin-top: 30px;
        }

        .carousel-btn {
          width: 40px;
          height: 40px;
          border-radius: 50%;
          border: 2px solid #e2e8f0;
          background: white;
          color: #64748b;
          cursor: pointer;
          transition: all 0.3s ease;
          font-size: 1.2rem;
        }

        .carousel-btn:hover {
          background: #2563eb;
          color: white;
          border-color: #2563eb;
        }

        .carousel-dots {
          display: flex;
          gap: 10px;
        }

        .dot {
          width: 10px;
          height: 10px;
          border-radius: 50%;
          background: #cbd5e1;
          cursor: pointer;
          transition: all 0.3s ease;
        }

        .dot.active {
          background: #2563eb;
          width: 30px;
          border-radius: 5px;
        }

        /* View All Reviews Button */
        .view-all-reviews-btn {
          display: inline-flex;
          align-items: center;
          padding: 14px 35px;
          background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
          color: white;
          text-decoration: none;
          border-radius: 50px;
          font-weight: 600;
          font-size: 1rem;
          transition: all 0.3s ease;
          box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .view-all-reviews-btn:hover {
          transform: translateY(-2px);
          box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
          background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
        }

        /* Partners Section */
        .partners-section {
          margin-bottom: 60px;
        }

        .partners-title {
          text-align: center;
          font-size: 1.8rem;
          color: #1e293b;
          margin-bottom: 40px;
        }

        .partners-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
          gap: 30px;
          max-width: 900px;
          margin: 0 auto;
        }

        .partner-card {
          background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
          padding: 35px 25px;
          border-radius: 16px;
          text-align: center;
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
          border: 2px solid transparent;
          position: relative;
          overflow: hidden;
        }

        .partner-card::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 3px;
          background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%);
          transform: translateY(-100%);
          transition: transform 0.3s ease;
        }

        .partner-card:hover {
          transform: translateY(-8px) scale(1.02);
          box-shadow: 0 12px 35px rgba(30, 58, 138, 0.15);
          border-color: #3b82f6;
          background: linear-gradient(145deg, #ffffff 0%, #eff6ff 100%);
        }

        .partner-card:hover::before {
          transform: translateY(0);
        }

        .certificate-icon {
          margin-bottom: 20px;
          display: flex;
          align-items: center;
          justify-content: center;
          width: 80px;
          height: 80px;
          margin: 0 auto 20px;
          background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
          border-radius: 20px;
          box-shadow: 0 8px 16px rgba(99, 102, 241, 0.1);
        }

        .certificate-icon svg {
          filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }

        .partner-card p {
          color: #334155;
          font-weight: 700;
          font-size: 0.95rem;
          letter-spacing: -0.01em;
        }

        /* Trust CTA */
        .trust-cta {
          text-align: center;
          padding: 60px 20px;
          background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.1) 100%);
          border-radius: 20px;
        }

        .trust-cta h3 {
          font-size: 2rem;
          color: #1e293b;
          margin-bottom: 15px;
        }

        .trust-cta p {
          color: #64748b;
          font-size: 1.1rem;
          margin-bottom: 30px;
        }

        /* Mobile Responsive for Testimonials */
        @media (max-width: 768px) {
          .testimonials-section {
            padding: 60px 15px;
          }

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

          .section-subtitle {
            font-size: 1rem;
          }

          .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
          }

          .stat-number {
            font-size: 2.5rem;
          }

          .review-card {
            padding: 30px 20px;
          }

          .review-text {
            font-size: 1rem;
          }

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

          .trust-cta h3 {
            font-size: 1.6rem;
          }
        }

        @media (max-width: 480px) {
          .testimonials-section {
            padding: 50px 10px;
          }

          .section-title {
            font-size: 1.6rem;
          }

          .stats-grid {
            grid-template-columns: 1fr;
          }

          .stat-card {
            padding: 25px;
          }

          .stat-number {
            font-size: 2rem;
          }

          .review-card {
            padding: 25px 15px;
          }

          .partners-grid {
            grid-template-columns: 1fr;
            gap: 20px;
          }

          .trust-cta {
            padding: 40px 15px;
          }

          .trust-cta h3 {
            font-size: 1.4rem;
          }

          .trust-cta p {
            font-size: 1rem;
          }
        }

        /* Why Choose Section Styles */
        .why-section {
          background: white;
          padding: 80px 20px;
        }

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

        .why-title {
          text-align: center;
          font-size: 2.8rem;
          font-weight: 800;
          color: #1e293b;
          margin-bottom: 15px;
        }

        .why-subtitle {
          text-align: center;
          font-size: 1.2rem;
          color: #64748b;
          margin-bottom: 60px;
          max-width: 700px;
          margin-left: auto;
          margin-right: auto;
        }

        .why-stats-grid {
          display: grid;
          grid-template-columns: repeat(4, 1fr);
          gap: 30px;
          margin-bottom: 60px;
        }

        .why-stat-card {
          text-align: center;
          padding: 30px 20px;
          background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
          border-radius: 15px;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          transition: all 0.3s ease;
        }

        .why-stat-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .why-stat-number {
          font-size: 2.5rem;
          font-weight: 800;
          color: #2563eb;
          margin-bottom: 10px;
        }

        .why-stat-label {
          font-size: 1.1rem;
          font-weight: 600;
          color: #1e293b;
          margin-bottom: 10px;
        }

        .why-stat-desc {
          font-size: 0.95rem;
          color: #64748b;
          line-height: 1.6;
        }

        .why-features {
          background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
          border-radius: 20px;
          padding: 40px;
          margin-bottom: 40px;
        }

        .why-features h3 {
          text-align: center;
          font-size: 2rem;
          font-weight: 700;
          color: #1e293b;
          margin-bottom: 40px;
        }

        .why-features-grid {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 30px;
        }

        .why-feature {
          display: flex;
          gap: 20px;
          align-items: flex-start;
        }

        .why-feature svg {
          width: 40px;
          height: 40px;
          color: #2563eb;
          flex-shrink: 0;
        }

        .why-feature h4 {
          font-size: 1.2rem;
          font-weight: 600;
          color: #1e293b;
          margin-bottom: 10px;
        }

        .why-feature p {
          color: #64748b;
          line-height: 1.6;
        }

        /* Why Mobile Responsive */
        @media (max-width: 1024px) {
          .why-stats-grid {
            grid-template-columns: repeat(2, 1fr);
          }
        }

        @media (max-width: 768px) {
          .why-section {
            padding: 0px 20px;
          }

          .why-title {
            font-size: 2rem;
          }

          .why-stats-grid {
            grid-template-columns: 1fr;
          }

          .why-features-grid {
            grid-template-columns: 1fr;
          }

          .why-features {
            padding: 20px;
          }
        }

        /* Blog Section Styles */
        .blog-section {
          background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
          padding: 80px 20px;
        }

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

        .blog-header {
          text-align: center;
          margin-bottom: 60px;
        }

        .blog-title {
          font-size: 2.8rem;
          font-weight: 800;
          color: #1e293b;
          margin-bottom: 15px;
        }

        .blog-subtitle {
          font-size: 1.2rem;
          color: #64748b;
          max-width: 600px;
          margin: 0 auto;
        }

        .blog-articles {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 30px;
          margin-bottom: 50px;
        }

        .blog-article-card {
          background: white;
          border-radius: 12px;
          overflow: hidden;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          transition: all 0.3s ease;
          cursor: pointer;
          text-decoration: none;
          color: inherit;
          display: block;
        }

        .blog-article-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }


        .blog-article-content {
          padding: 25px;
        }

        .blog-article-category {
          display: inline-block;
          padding: 5px 12px;
          background: #e0f2fe;
          color: #0369a1;
          border-radius: 20px;
          font-size: 0.8rem;
          font-weight: 600;
          margin-bottom: 12px;
          text-transform: uppercase;
          letter-spacing: 0.5px;
        }

        .blog-article-title {
          font-size: 1.2rem;
          font-weight: 700;
          color: #1e293b;
          margin-bottom: 10px;
          line-height: 1.4;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
        }

        .blog-article-excerpt {
          color: #64748b;
          line-height: 1.6;
          font-size: 0.95rem;
          display: -webkit-box;
          -webkit-line-clamp: 3;
          -webkit-box-orient: vertical;
          overflow: hidden;
          margin-bottom: 15px;
        }

        .blog-article-meta {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding-top: 15px;
          border-top: 1px solid #e2e8f0;
        }

        .blog-article-date {
          color: #94a3b8;
          font-size: 0.85rem;
        }

        .blog-article-readmore {
          color: #2563eb;
          font-weight: 600;
          font-size: 0.9rem;
          display: flex;
          align-items: center;
          gap: 5px;
          transition: gap 0.3s ease;
        }

        .blog-article-card:hover .blog-article-readmore {
          gap: 10px;
        }

        .blog-cta {
          text-align: center;
        }

        .blog-view-all {
          display: inline-flex;
          align-items: center;
          gap: 10px;
          padding: 15px 35px;
          background: #2563eb;
          color: white;
          text-decoration: none;
          border-radius: 50px;
          font-weight: 600;
          font-size: 1.1rem;
          transition: all 0.3s ease;
        }

        .blog-view-all:hover {
          background: #1d4ed8;
          transform: translateY(-2px);
          box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
          gap: 15px;
        }

        /* Blog Mobile Responsive */
        @media (max-width: 1024px) {
          .blog-articles {
            grid-template-columns: repeat(2, 1fr);
          }
        }

        @media (max-width: 768px) {
          .blog-title {
            font-size: 2rem;
          }

          .blog-subtitle {
            font-size: 1rem;
          }

          .blog-articles {
            grid-template-columns: 1fr;
          }

          .blog-article-title {
            font-size: 1.1rem;
          }
        }

        /* Service Areas Section Styles */
        .areas-section {
          background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
          padding: 80px 20px;
        }

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

        .areas-title {
          text-align: center;
          font-size: 2.8rem;
          font-weight: 800;
          color: #1e293b;
          margin-bottom: 15px;
        }

        .areas-subtitle {
          text-align: center;
          font-size: 1.2rem;
          color: #64748b;
          margin-bottom: 60px;
          max-width: 700px;
          margin-left: auto;
          margin-right: auto;
        }

        .areas-map-side h3 {
          font-size: 1.8rem;
          font-weight: 700;
          color: #1e293b;
          margin-bottom: 20px;
        }

        .areas-map-side>p {
          font-size: 1.05rem;
          color: #64748b;
          line-height: 1.7;
          margin-bottom: 40px;
        }

        .areas-intro {
          background: white;
          padding: 30px;
          border-radius: 15px;
          margin-bottom: 40px;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .areas-intro h3 {
          font-size: 1.8rem;
          font-weight: 700;
          color: #1e293b;
          margin-bottom: 20px;
        }

        .areas-intro p {
          font-size: 1.05rem;
          color: #64748b;
          line-height: 1.7;
        }

        .cities-grid {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 30px;
          margin-bottom: 50px;
        }

        .city-card {
          background: white;
          padding: 25px;
          border-radius: 12px;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          transition: all 0.3s ease;
          display: flex;
          flex-direction: column;
        }

        .city-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .city-card.main-city {
          background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
          color: white;
        }

        .city-card.coming-soon {
          background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .city-header {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-bottom: 15px;
        }

        .city-header h3 {
          font-size: 1.3rem;
          font-weight: 700;
          color: #1e293b;
        }

        .main-city .city-header h3 {
          color: white;
        }

        .city-badge {
          padding: 5px 12px;
          background: rgba(37, 99, 235, 0.1);
          color: #2563eb;
          border-radius: 20px;
          font-size: 0.8rem;
          font-weight: 600;
        }

        .main-city .city-badge {
          background: rgba(255, 255, 255, 0.2);
          color: white;
        }

        .city-card p {
          color: #64748b;
          line-height: 1.6;
          margin-bottom: 15px;
        }

        .main-city p {
          color: rgba(255, 255, 255, 0.9);
        }

        .city-services {
          list-style: none;
          padding: 0;
          margin-bottom: 20px;
        }

        .city-services li {
          padding: 5px 0;
          color: #475569;
        }

        .main-city .city-services li {
          color: rgba(255, 255, 255, 0.8);
        }

        .city-stats {
          display: flex;
          gap: 15px;
          margin-top: auto;
          padding-top: 15px;
          border-top: 1px solid #e2e8f0;
        }

        .main-city .city-stats {
          border-color: rgba(255, 255, 255, 0.2);
        }

        .city-stats span {
          padding: 5px 10px;
          background: #f1f5f9;
          border-radius: 15px;
          font-size: 0.85rem;
          font-weight: 600;
          color: #1e293b;
        }

        .main-city .city-stats span {
          background: rgba(255, 255, 255, 0.2);
          color: white;
        }

        .city-link {
          display: inline-block;
          margin-top: 15px;
          padding: 10px 20px;
          background: #2563eb;
          color: white;
          text-decoration: none;
          border-radius: 8px;
          font-weight: 600;
          transition: all 0.3s ease;
        }

        .city-link:hover {
          background: #1d4ed8;
          transform: translateX(5px);
        }

        .coming-cities {
          display: flex;
          flex-wrap: wrap;
          gap: 10px;
          margin: 15px 0;
        }

        .coming-cities span {
          padding: 5px 12px;
          background: white;
          border-radius: 20px;
          font-size: 0.9rem;
          color: #64748b;
        }

        .coming-text {
          color: #2563eb;
          font-weight: 600;
          margin-top: 15px;
        }

        .nationwide-features {
          background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
          padding: 60px 40px;
          border-radius: 20px;
          margin-top: 50px;
          position: relative;
          overflow: hidden;
        }

        .nationwide-features::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
          pointer-events: none;
        }

        .nationwide-features h3 {
          text-align: center;
          font-size: 2.2rem;
          font-weight: 700;
          color: white;
          margin-bottom: 50px;
          position: relative;
        }

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

        .feature-card {
          background: rgba(255, 255, 255, 0.05);
          backdrop-filter: blur(10px);
          border: 1px solid rgba(255, 255, 255, 0.1);
          padding: 30px 20px;
          border-radius: 15px;
          text-align: center;
          transition: all 0.3s ease;
        }

        .feature-card:hover {
          background: rgba(255, 255, 255, 0.1);
          transform: translateY(-5px);
          border-color: rgba(37, 99, 235, 0.5);
        }

        .feature-icon-wrapper {
          width: 80px;
          height: 80px;
          margin: 0 auto 20px;
          background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
          border-radius: 20px;
          display: flex;
          align-items: center;
          justify-content: center;
          box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
        }

        .feature-icon-wrapper svg {
          width: 40px;
          height: 40px;
          color: white;
        }

        .feature-card h4 {
          font-size: 1.2rem;
          font-weight: 600;
          color: white;
          margin-bottom: 15px;
        }

        .feature-card p {
          color: rgba(255, 255, 255, 0.7);
          font-size: 0.95rem;
          line-height: 1.6;
        }

        /* Areas Mobile Responsive */
        @media (max-width: 1024px) {
          .cities-grid {
            grid-template-columns: 1fr;
          }

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

        @media (max-width: 768px) {
          .areas-title {
            font-size: 2rem;
          }

          .areas-subtitle {
            font-size: 1rem;
          }

          .features-grid {
            grid-template-columns: 1fr;
          }

          .nationwide-features {
            padding: 25px;
          }
        }

        /* Process Section Styles */
        .process-section {
          background: white;
          padding: 80px 20px;
          position: relative;
        }

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

        .process-title {
          text-align: center;
          font-size: 2.8rem;
          font-weight: 800;
          color: #1e293b;
          margin-bottom: 15px;
        }

        .process-subtitle {
          text-align: center;
          font-size: 1.2rem;
          color: #64748b;
          margin-bottom: 60px;
          max-width: 700px;
          margin-left: auto;
          margin-right: auto;
        }

        .process-timeline {
          position: relative;
          padding: 20px 0;
        }

        .process-timeline::before {
          content: '';
          position: absolute;
          left: 50px;
          top: 0;
          bottom: 0;
          width: 2px;
          background: linear-gradient(180deg, #2563eb 0%, #1e40af 100%);
        }

        .process-step {
          display: flex;
          align-items: flex-start;
          margin-bottom: 50px;
          position: relative;
          opacity: 0;
          animation: slideInLeft 0.6s ease forwards;
        }

        .process-step:nth-child(odd) {
          animation-delay: 0.1s;
        }

        .process-step:nth-child(even) {
          animation-delay: 0.2s;
        }

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

          to {
            opacity: 1;
            transform: translateX(0);
          }
        }

        .step-number {
          width: 50px;
          height: 50px;
          background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
          color: white;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.3rem;
          font-weight: 700;
          flex-shrink: 0;
          position: relative;
          z-index: 2;
          box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .step-content {
          margin-left: 30px;
          flex: 1;
          background: #f8f9fa;
          padding: 25px;
          border-radius: 12px;
          position: relative;
        }

        .step-content::before {
          content: '';
          position: absolute;
          left: -10px;
          top: 20px;
          width: 0;
          height: 0;
          border-top: 10px solid transparent;
          border-bottom: 10px solid transparent;
          border-right: 10px solid #f8f9fa;
        }

        .step-content h3 {
          font-size: 1.3rem;
          font-weight: 700;
          color: #1e293b;
          margin-bottom: 10px;
        }

        .step-content p {
          color: #475569;
          line-height: 1.6;
          margin-bottom: 15px;
        }

        .step-time {
          display: inline-block;
          padding: 5px 15px;
          background: white;
          border-radius: 20px;
          font-size: 0.9rem;
          color: #2563eb;
          font-weight: 600;
          border: 1px solid #e2e8f0;
        }

        .process-benefits {
          margin-top: 80px;
          padding: 40px;
          background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
          border-radius: 20px;
        }

        .process-benefits h3 {
          text-align: center;
          font-size: 2rem;
          font-weight: 700;
          color: #1e293b;
          margin-bottom: 40px;
        }

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

        .benefit-item {
          display: flex;
          align-items: center;
          gap: 15px;
          padding: 20px;
          background: white;
          border-radius: 12px;
          transition: all 0.3s ease;
        }

        .benefit-item:hover {
          transform: translateY(-3px);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .benefit-item svg {
          width: 24px;
          height: 24px;
          color: #22c55e;
          flex-shrink: 0;
        }

        .benefit-item span {
          color: #1e293b;
          font-weight: 500;
          line-height: 1.4;
        }

        .process-cta {
          text-align: center;
          margin-top: 60px;
          padding: 40px;
          background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
          border-radius: 20px;
          color: white;
        }

        .process-cta h3 {
          font-size: 2rem;
          margin-bottom: 15px;
        }

        .process-cta p {
          font-size: 1.1rem;
          margin-bottom: 25px;
          opacity: 0.9;
        }

        .process-cta-btn {
          display: inline-flex;
          align-items: center;
          gap: 10px;
          padding: 15px 35px;
          background: #2563eb;
          color: white;
          text-decoration: none;
          border-radius: 50px;
          font-weight: 600;
          font-size: 1.1rem;
          transition: all 0.3s ease;
        }

        .process-cta-btn:hover {
          background: #1d4ed8;
          transform: translateY(-2px);
          box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
        }

        /* Process Mobile Responsive */
        @media (max-width: 768px) {
          .process-title {
            font-size: 2rem;
          }

          .process-subtitle {
            font-size: 1rem;
          }

          .process-timeline::before {
            left: 25px;
          }

          .step-number {
            width: 40px;
            height: 40px;
            font-size: 1.1rem;
          }

          .step-content {
            margin-left: 20px;
            padding: 20px;
          }

          .step-content h3 {
            font-size: 1.1rem;
          }

          .benefits-grid {
            grid-template-columns: 1fr;
          }

          .process-cta h3 {
            font-size: 1.5rem;
          }
        }

        /* FAQ Section Styles */
        .faq-section {
          background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
          padding: 80px 20px;
          position: relative;
        }

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

        .faq-title {
          text-align: center;
          font-size: 2.8rem;
          font-weight: 800;
          color: #1e293b;
          margin-bottom: 15px;
        }

        .faq-subtitle {
          text-align: center;
          font-size: 1.2rem;
          color: #64748b;
          margin-bottom: 60px;
          max-width: 600px;
          margin-left: auto;
          margin-right: auto;
        }

        .faq-grid {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 30px;
        }

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

        .faq-item {
          background: white;
          border-radius: 12px;
          overflow: hidden;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          transition: all 0.3s ease;
        }

        .faq-item:hover {
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
          width: 100%;
          padding: 25px 30px;
          background: white;
          border: none;
          cursor: pointer;
          display: flex;
          justify-content: space-between;
          align-items: center;
          text-align: left;
          transition: all 0.3s ease;
        }

        .faq-question:hover {
          background: #f8f9fa;
        }

        .faq-question.active {
          background: #f1f5f9;
        }

        .faq-question h3 {
          font-size: 1.1rem;
          font-weight: 600;
          color: #1e293b;
          margin: 0;
          flex: 1;
          line-height: 1.4;
        }

        .faq-icon {
          flex-shrink: 0;
          transition: transform 0.3s ease;
          color: #64748b;
        }

        .faq-question.active .faq-icon {
          transform: rotate(180deg);
          color: #2563eb;
        }

        .faq-answer {
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.3s ease;
        }

        .faq-answer.active {
          max-height: 500px;
        }

        .faq-answer>div {
          padding: 0 30px 25px;
          color: #475569;
          line-height: 1.7;
        }

        .faq-answer p {
          margin: 0;
        }

        .faq-answer ul {
          margin: 10px 0 0;
          padding-left: 20px;
        }

        .faq-answer ul li {
          margin-bottom: 8px;
        }

        .faq-answer ul li strong {
          color: #1e293b;
        }

        .faq-cta-icon {
          margin-bottom: 25px;
        }

        .faq-cta-icon svg {
          width: 60px;
          height: 60px;
          color: white;
          opacity: 0.9;
        }

        .faq-cta {
          text-align: center;
          margin-top: 60px;
          padding: 50px 40px;
          background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
          border-radius: 20px;
          color: white;
          position: relative;
          overflow: hidden;
        }

        .faq-cta::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
          pointer-events: none;
        }

        .faq-cta h3 {
          font-size: 2.2rem;
          margin-bottom: 15px;
          font-weight: 700;
        }

        .faq-cta p {
          font-size: 1.15rem;
          margin-bottom: 35px;
          opacity: 0.95;
          max-width: 500px;
          margin-left: auto;
          margin-right: auto;
        }

        .faq-cta-buttons {
          display: flex;
          gap: 15px;
          justify-content: center;
          flex-wrap: wrap;
        }

        .faq-cta-btn {
          display: inline-flex;
          align-items: center;
          gap: 10px;
          padding: 15px 30px;
          background: white;
          color: #1e293b;
          text-decoration: none;
          border: none;
          border-radius: 50px;
          font-weight: 600;
          font-size: 1.05rem;
          cursor: pointer;
          transition: all 0.3s ease;
          font-family: inherit;
        }

        .faq-cta-btn.primary {
          background: white;
          color: #1e293b;
        }

        .faq-cta-btn.secondary {
          background: rgba(255, 255, 255, 0.1);
          color: white;
          border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .faq-cta-btn:hover {
          transform: translateY(-2px);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .faq-cta-btn.primary:hover {
          background: #f8f9fa;
        }

        .faq-cta-btn.secondary:hover {
          background: rgba(255, 255, 255, 0.2);
          border-color: rgba(255, 255, 255, 0.5);
        }

        .faq-cta-btn svg {
          width: 20px;
          height: 20px;
        }

        /* FAQ Mobile Responsive */
        @media (max-width: 968px) {
          .faq-grid {
            grid-template-columns: 1fr;
          }

          .faq-title {
            font-size: 2rem;
          }

          .faq-subtitle {
            font-size: 1rem;
          }
        }

        @media (max-width: 768px) {
          .faq-section {
            padding: 60px 20px;
          }

          .faq-question {
            padding: 20px;
          }

          .faq-question h3 {
            font-size: 1rem;
          }

          .faq-answer>div {
            padding: 0 20px 20px;
          }

          .faq-cta {
            padding: 30px 20px;
          }

          .faq-cta h3 {
            font-size: 1.5rem;
          }
        }

        /* Industry Section Styles (from index.vto) */
        .industry-section {
          background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
          padding: 90px 20px;
          position: relative;
          overflow: hidden;
        }

        .industry-section::before {
          content: '';
          position: absolute;
          top: -50%;
          right: -10%;
          width: 500px;
          height: 500px;
          background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
          border-radius: 50%;
        }

        .industry-container {
          max-width: 1200px;
          margin: 0 auto;
          position: relative;
          z-index: 1;
        }

        .industry-header {
          text-align: center;
          margin-bottom: 60px;
        }

        .industry-title {
          font-size: 2.8rem;
          font-weight: 800;
          color: #1e293b;
          margin-bottom: 20px;
          line-height: 1.2;
        }

        .industry-title span {
          background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
        }

        .industry-subtitle {
          font-size: 1.1rem;
          color: #64748b;
          max-width: 700px;
          margin: 0 auto;
          line-height: 1.7;
        }

        .industries-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
          gap: 30px;
          margin-bottom: 60px;
        }

        .industry-card {
          background: white;
          border-radius: 20px;
          padding: 35px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
          transition: all 0.3s ease;
          position: relative;
          overflow: hidden;
          border: 1px solid rgba(229, 231, 235, 0.5);
        }

        .industry-card::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 4px;
          background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
          transform: scaleX(0);
          transition: transform 0.3s ease;
        }

        .industry-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

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

        .industry-icon {
          width: 60px;
          height: 60px;
          background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
          border-radius: 15px;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.8rem;
          margin-bottom: 20px;
        }

        .industry-card h3 {
          font-size: 1.4rem;
          font-weight: 700;
          color: #1e293b;
          margin-bottom: 15px;
        }

        .industry-card .industry-description {
          color: #64748b;
          line-height: 1.6;
          margin-bottom: 20px;
          font-size: 0.95rem;
        }

        .industry-services {
          margin-bottom: 20px;
        }

        .industry-services-title {
          font-size: 0.85rem;
          font-weight: 600;
          color: #475569;
          text-transform: uppercase;
          letter-spacing: 0.5px;
          margin-bottom: 10px;
        }

        .industry-service-list {
          display: flex;
          flex-wrap: wrap;
          gap: 8px;
        }

        .industry-service-tag {
          background: #f1f5f9;
          color: #475569;
          padding: 5px 12px;
          border-radius: 20px;
          font-size: 0.85rem;
          font-weight: 500;
          transition: all 0.2s ease;
        }

        .industry-service-tag:hover {
          background: #3b82f6;
          color: white;
          transform: translateY(-2px);
        }

        .industry-cta {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          color: #3b82f6;
          font-weight: 600;
          font-size: 0.95rem;
          text-decoration: none;
          transition: gap 0.3s ease;
        }

        .industry-cta:hover {
          gap: 12px;
        }

        .industry-cta::after {
          content: '→';
          transition: transform 0.3s ease;
        }

        /* Pricing Section */
        .pricing-section {
          background: white;
          border-radius: 25px;
          padding: 50px;
          margin-top: 60px;
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
          border: 1px solid rgba(229, 231, 235, 0.5);
        }

        .pricing-header {
          text-align: center;
          margin-bottom: 40px;
        }

        .pricing-title {
          font-size: 2.2rem;
          font-weight: 800;
          color: #1e293b;
          margin-bottom: 15px;
        }

        .pricing-subtitle {
          color: #64748b;
          font-size: 1rem;
          line-height: 1.6;
        }

        .pricing-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 30px;
          margin-bottom: 40px;
        }

        .pricing-card {
          text-align: center;
          padding: 30px;
          background: #f8fafc;
          border-radius: 20px;
          position: relative;
          transition: all 0.3s ease;
          border: 2px solid transparent;
        }

        .pricing-card.featured {
          background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
          border-color: #3b82f6;
          transform: scale(1.05);
        }

        .pricing-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

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

        .pricing-badge {
          position: absolute;
          top: -12px;
          left: 50%;
          transform: translateX(-50%);
          background: #3b82f6;
          color: white;
          padding: 5px 20px;
          border-radius: 20px;
          font-size: 0.8rem;
          font-weight: 600;
          text-transform: uppercase;
          letter-spacing: 0.5px;
        }

        .pricing-name {
          font-size: 1.3rem;
          font-weight: 700;
          color: #1e293b;
          margin-bottom: 10px;
        }

        .pricing-price {
          font-size: 2.5rem;
          font-weight: 800;
          color: #3b82f6;
          margin-bottom: 5px;
        }

        .pricing-price span {
          font-size: 1rem;
          color: #64748b;
          font-weight: 500;
        }

        .pricing-duration {
          color: #64748b;
          font-size: 0.9rem;
          margin-bottom: 25px;
        }

        .pricing-features {
          list-style: none;
          padding: 0;
          margin-bottom: 30px;
        }

        .pricing-features li {
          padding: 8px 0;
          color: #475569;
          font-size: 0.95rem;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 8px;
        }

        .pricing-features li::before {
          content: '✓';
          color: #10b981;
          font-weight: 700;
        }

        .pricing-button {
          width: 100%;
          padding: 12px 25px;
          background: #1e293b;
          color: white;
          border: none;
          border-radius: 10px;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s ease;
        }

        .pricing-card.featured .pricing-button {
          background: #3b82f6;
        }

        .pricing-button:hover {
          transform: translateY(-2px);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .pricing-note {
          text-align: center;
          padding: 25px;
          background: #fef3c7;
          border-radius: 15px;
          border-left: 4px solid #f59e0b;
        }

        .pricing-note-title {
          font-weight: 700;
          color: #92400e;
          margin-bottom: 8px;
          font-size: 1.1rem;
        }

        .pricing-note-text {
          color: #78350f;
          font-size: 0.95rem;
          line-height: 1.6;
        }

        @media (max-width: 768px) {
          .industry-section {
            padding: 70px 15px;
          }

          .industry-title {
            font-size: 2.2rem;
          }

          .industries-grid {
            grid-template-columns: 1fr;
            gap: 20px;
          }

          .pricing-section {
            padding: 30px 20px;
          }

          .pricing-grid {
            grid-template-columns: 1fr;
          }

          .pricing-card.featured {
            transform: scale(1);
          }
        }

        @media (max-width: 480px) {
          .industry-section {
            padding: 60px 10px;
          }

          .industry-title {
            font-size: 1.8rem;
          }

          .industry-subtitle {
            font-size: 0.95rem;
          }

          .industry-card {
            padding: 25px;
          }

          .pricing-title {
            font-size: 1.8rem;
          }
        }

        /* About Section Styles (from index.vto) */
        /* About Section Styles (from index.vto) */
        .about-section {
          background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
          padding: 90px 20px;
          position: relative;
          overflow: hidden;
        }

        .about-section::before {
          content: '';
          position: absolute;
          top: 50%;
          left: -100px;
          width: 200px;
          height: 200px;
          background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
          border-radius: 50%;
        }

        .about-container {
          max-width: 1200px;
          margin: 0 auto;
          position: relative;
          z-index: 1;
        }

        .about-header {
          text-align: center;
          margin-bottom: 70px;
        }

        .about-title {
          font-size: 2.8rem;
          font-weight: 800;
          color: #1e293b;
          margin-bottom: 20px;
          line-height: 1.2;
        }

        .about-title span {
          background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
        }

        .about-subtitle {
          font-size: 1.1rem;
          color: #64748b;
          max-width: 700px;
          margin: 0 auto;
          line-height: 1.7;
        }

        /* Company Story Section */
        .company-story {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 60px;
          margin-bottom: 80px;
          align-items: center;
        }

        .story-content {
          padding-right: 30px;
        }

        .story-content h3 {
          font-size: 2rem;
          font-weight: 700;
          color: #1e293b;
          margin-bottom: 20px;
          line-height: 1.3;
        }

        .story-highlight {
          display: inline-block;
          background: #fef3c7;
          color: #92400e;
          padding: 2px 8px;
          border-radius: 4px;
          font-weight: 700;
        }

        .story-text {
          color: #475569;
          font-size: 1rem;
          line-height: 1.8;
          margin-bottom: 25px;
        }

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

        .stat-box {
          text-align: center;
          padding: 20px;
          background: white;
          border-radius: 15px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
          transition: transform 0.3s ease;
        }

        .stat-box:hover {
          transform: translateY(-5px);
        }

        .stat-number {
          font-size: 2.5rem;
          font-weight: 800;
          color: #3b82f6;
          margin-bottom: 5px;
        }

        .stat-label {
          font-size: 0.85rem;
          color: #64748b;
          text-transform: uppercase;
          letter-spacing: 0.5px;
        }

        /* Leadership Team */
        .leadership-section {
          background: white;
          border-radius: 25px;
          padding: 50px;
          margin-bottom: 60px;
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }

        .leadership-header {
          text-align: center;
          margin-bottom: 40px;
        }

        .leadership-title {
          font-size: 2rem;
          font-weight: 700;
          color: #1e293b;
          margin-bottom: 10px;
        }

        .leadership-subtitle {
          color: #64748b;
          font-size: 1rem;
        }

        .leadership-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 40px;
        }

        /* Modern Leadership Card Styles */
        .leadership-modern-card {
          background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
          border-radius: 24px;
          padding: 40px;
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
          border: 1px solid rgba(59, 130, 246, 0.1);
          position: relative;
          overflow: hidden;
          max-width: 900px;
          margin: 0 auto;
        }

        .leadership-modern-card::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 4px;
          background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
          background-size: 200% 100%;
          animation: shimmer 3s linear infinite;
        }

        @keyframes shimmer {
          0% {
            background-position: -200% 0;
          }

          100% {
            background-position: 200% 0;
          }
        }

        .leadership-icon-wrapper {
          width: 100px;
          height: 100px;
          margin: 0 auto 30px;
          background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          position: relative;
        }

        .leadership-icon {
          width: 60px;
          height: 60px;
        }

        .leadership-content {
          text-align: center;
        }

        .leadership-name-section {
          margin-bottom: 30px;
        }

        .leader-name {
          font-size: 2rem;
          font-weight: 800;
          color: #1e293b;
          margin-bottom: 5px;
          background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
        }

        .leader-position {
          display: inline-block;
          background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
          color: #1e293b;
          padding: 10px 24px;
          border-radius: 25px;
          font-size: 0.95rem;
          font-weight: 700;
          letter-spacing: 0.8px;
          margin-top: 12px;
          border: 2px solid #3b82f6;
          box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
          text-transform: uppercase;
          position: relative;
          transition: all 0.3s ease;
        }

        .leader-position:hover {
          transform: translateY(-2px);
          box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
          background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
        }

        .leader-position::before {
          content: '👔';
          margin-right: 8px;
          font-size: 1rem;
        }

        .leadership-credentials {
          display: flex;
          flex-direction: column;
          gap: 15px;
          margin: 30px 0;
          text-align: left;
          max-width: 600px;
          margin-left: auto;
          margin-right: auto;
        }

        .credential-item {
          display: flex;
          align-items: center;
          gap: 15px;
          padding: 15px 20px;
          background: rgba(59, 130, 246, 0.05);
          border-radius: 12px;
          transition: all 0.3s ease;
        }

        .credential-item:hover {
          background: rgba(59, 130, 246, 0.1);
          transform: translateX(5px);
        }

        .credential-icon {
          color: #3b82f6;
          flex-shrink: 0;
        }

        .credential-item span {
          color: #475569;
          font-size: 1rem;
          line-height: 1.5;
        }

        .leadership-trust-badges {
          display: flex;
          gap: 20px;
          justify-content: center;
          flex-wrap: wrap;
          margin: 30px 0;
        }

        .trust-badge {
          display: flex;
          align-items: center;
          gap: 8px;
          padding: 10px 16px;
          background: white;
          border: 1px solid #e2e8f0;
          border-radius: 10px;
          font-size: 0.85rem;
          color: #64748b;
          transition: all 0.3s ease;
        }

        .trust-badge:hover {
          border-color: #3b82f6;
          transform: translateY(-2px);
          box-shadow: 0 5px 15px rgba(59, 130, 246, 0.15);
        }

        .trust-badge svg {
          color: #3b82f6;
        }

        .leadership-quote {
          margin-top: 40px;
          padding: 25px;
          background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
          border-left: 4px solid #3b82f6;
          border-radius: 12px;
          text-align: left;
          max-width: 700px;
          margin-left: auto;
          margin-right: auto;
        }

        .leadership-quote p {
          color: #334155;
          font-size: 1.05rem;
          font-style: italic;
          line-height: 1.7;
          margin-bottom: 10px;
        }

        .leadership-quote cite {
          color: #64748b;
          font-size: 0.9rem;
          font-style: normal;
          display: block;
          text-align: right;
        }

        .leader-credentials {
          color: #64748b;
          font-size: 0.85rem;
          line-height: 1.6;
        }

        /* Certifications Section */
        .certifications-section {
          margin-bottom: 70px;
        }

        .cert-header {
          text-align: center;
          margin-bottom: 60px;
        }

        .cert-title {
          font-size: 2.5rem;
          font-weight: 800;
          background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          margin-bottom: 12px;
          letter-spacing: -0.02em;
        }

        .cert-subtitle {
          color: #64748b;
          font-size: 1.1rem;
          font-weight: 400;
          line-height: 1.6;
        }

        .cert-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 25px;
          margin-bottom: 50px;
        }

        .cert-card {
          background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
          border-radius: 16px;
          padding: 35px 25px;
          text-align: center;
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
          transition: all 0.3s ease;
          border: 2px solid transparent;
          position: relative;
          overflow: hidden;
        }

        .cert-card::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 4px;
          background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
        }

        .cert-card:hover {
          transform: translateY(-8px) scale(1.02);
          background: linear-gradient(145deg, #ffffff 0%, #eff6ff 100%);
          box-shadow: 0 15px 40px rgba(30, 58, 138, 0.12);
          border-color: #3b82f6;
        }

        .cert-icon {
          width: 72px;
          height: 72px;
          margin: 0 auto 20px;
          background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
          border-radius: 20px;
          box-shadow: 0 8px 16px rgba(99, 102, 241, 0.1);
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.8rem;
        }

        .cert-icon img {
          filter: brightness(0) saturate(100%) invert(28%) sepia(47%) saturate(3726%) hue-rotate(222deg) brightness(96%) contrast(92%);
        }

        .cert-name {
          font-size: 1.25rem;
          font-weight: 700;
          background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          margin-bottom: 10px;
          letter-spacing: -0.01em;
        }

        .cert-details {
          color: #64748b;
          font-size: 0.9rem;
          line-height: 1.6;
          margin-bottom: 15px;
          font-weight: 400;
        }

        .cert-status {
          display: inline-block;
          padding: 6px 16px;
          background: linear-gradient(135deg, #10b981 0%, #059669 100%);
          color: white;
          border-radius: 24px;
          font-size: 0.85rem;
          font-weight: 600;
          letter-spacing: 0.02em;
          box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
        }

        .cert-status.cert-number {
          background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
          box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
        }

        /* Insurance Coverage */
        .insurance-banner {
          background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
          border-radius: 24px;
          padding: 40px;
          display: flex;
          align-items: center;
          justify-content: space-between;
          margin-bottom: 60px;
          box-shadow: 0 10px 40px rgba(30, 58, 138, 0.15);
          position: relative;
          overflow: hidden;
          border-left: none;
        }

        .insurance-banner::before {
          content: '';
          position: absolute;
          top: -50%;
          right: -10%;
          width: 60%;
          height: 200%;
          background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
          transform: rotate(30deg);
        }

        .insurance-content {
          flex: 1;
          position: relative;
          z-index: 1;
        }

        .insurance-title {
          font-size: 1.4rem;
          font-weight: 700;
          color: #ffffff;
          margin-bottom: 12px;
          letter-spacing: -0.01em;
        }

        .insurance-amount {
          font-size: 2.25rem;
          font-weight: 900;
          color: #fbbf24;
          margin-bottom: 8px;
          letter-spacing: -0.02em;
          text-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
        }

        .insurance-text {
          color: #e0e7ff;
          font-size: 1rem;
          line-height: 1.5;
          opacity: 0.95;
        }

        .insurance-icon {
          margin-right: 35px;
          display: flex;
          align-items: center;
          justify-content: center;
          width: 80px;
          height: 80px;
          background: rgba(255, 255, 255, 0.15);
          border-radius: 20px;
          backdrop-filter: blur(10px);
          position: relative;
          z-index: 1;
        }

        .insurance-icon img {
          filter: brightness(0) invert(1);
        }

        /* Case Studies */
        .cases-section {
          margin-bottom: 70px;
        }

        .cases-header {
          text-align: center;
          margin-bottom: 50px;
        }

        .cases-title {
          font-size: 2rem;
          font-weight: 700;
          color: #1e293b;
          margin-bottom: 10px;
        }

        .cases-subtitle {
          color: #64748b;
          font-size: 1rem;
        }

        .cases-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
          gap: 30px;
        }

        .case-card {
          background: white;
          border-radius: 20px;
          padding: 35px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
          transition: all 0.3s ease;
          border-left: 4px solid #3b82f6;
        }

        .case-card:hover {
          transform: translateX(5px);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .case-industry {
          display: inline-block;
          padding: 5px 12px;
          background: #eff6ff;
          color: #3b82f6;
          border-radius: 20px;
          font-size: 0.85rem;
          font-weight: 600;
          margin-bottom: 15px;
        }

        .case-title {
          font-size: 1.3rem;
          font-weight: 700;
          color: #1e293b;
          margin-bottom: 15px;
        }

        .case-description {
          color: #64748b;
          line-height: 1.6;
          margin-bottom: 20px;
          font-size: 0.95rem;
        }

        .case-results {
          background: #f8fafc;
          border-radius: 12px;
          padding: 15px;
          margin-bottom: 15px;
        }

        .case-results-title {
          font-size: 0.85rem;
          font-weight: 600;
          color: #475569;
          text-transform: uppercase;
          letter-spacing: 0.5px;
          margin-bottom: 10px;
        }

        .case-result-item {
          display: flex;
          align-items: center;
          gap: 8px;
          color: #10b981;
          font-size: 0.9rem;
          font-weight: 600;
          margin-bottom: 5px;
        }

        .case-result-item::before {
          content: '↑';
          font-weight: 700;
        }

        /* Partners Section */
        .partners-section {
          text-align: center;
          margin-top: 80px;
          margin-bottom: 80px;
          padding: 60px 20px;
          background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
          border-radius: 30px;
          position: relative;
          overflow: hidden;
        }


        .partners-title {
          font-size: 2.2rem;
          font-weight: 800;
          background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          margin-bottom: 50px;
          letter-spacing: -0.02em;
          position: relative;
          z-index: 1;
        }

        .partners-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
          gap: 25px;
          align-items: center;
          justify-items: center;
          padding: 20px;
          max-width: 1100px;
          margin: 0 auto;
          position: relative;
          z-index: 1;
          background: transparent;
          border-radius: 0;
        }

        .partner-logo {
          width: 160px;
          height: 80px;
          background: linear-gradient(145deg, #ffffff 0%, #ffffff 100%);
          border-radius: 16px;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 0.85rem;
          font-weight: 700;
          color: #334155;
          text-align: center;
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          padding: 15px;
          border: 2px solid transparent;
          position: relative;
          overflow: hidden;
          letter-spacing: -0.01em;
        }

        .partner-logo::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 3px;
          background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%);
          transform: translateY(-100%);
          transition: transform 0.3s ease;
        }

        .partner-logo::after {
          content: '';
          position: absolute;
          inset: 0;
          background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
          opacity: 0;
          transition: opacity 0.3s ease;
        }

        .partner-logo:hover {
          transform: translateY(-5px) scale(1.05);
          box-shadow: 0 12px 35px rgba(30, 58, 138, 0.15);
          border-color: #3b82f6;
          color: #1e3a8a;
        }

        .partner-logo:hover::before {
          transform: translateY(0);
        }

        .partner-logo:hover::after {
          opacity: 1;
        }

        @media (max-width: 968px) {
          .company-story {
            grid-template-columns: 1fr;
            gap: 40px;
          }

          .story-content {
            padding-right: 0;
          }

          .story-stats {
            grid-template-columns: repeat(3, 1fr);
          }
        }

        @media (max-width: 768px) {
          .about-section {
            padding: 70px 15px;
          }

          .about-title {
            font-size: 2.2rem;
          }

          .company-story h3 {
            font-size: 1.6rem;
          }

          .leadership-section {
            padding: 30px 20px;
          }

          .leadership-grid {
            grid-template-columns: 1fr;
          }

          .cert-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
          }

          .cases-grid {
            grid-template-columns: 1fr;
          }

          .insurance-banner {
            flex-direction: column;
            text-align: center;
          }

          .insurance-icon {
            margin: 0 0 20px 0;
          }

          .leadership-modern-card {
            padding: 40px 20px;
          }
        }

        @media (max-width: 480px) {
          .about-section {
            padding: 60px 10px;
          }

          .about-title {
            font-size: 1.8rem;
          }

          .about-subtitle {
            font-size: 0.95rem;
          }

          .story-stats {
            grid-template-columns: 1fr;
            gap: 15px;
          }

          .stat-number {
            font-size: 2rem;
          }

          .leadership-modern-card {
            padding: 40px 10px;
            border-radius: 16px;
          }

          .cert-grid {
            grid-template-columns: 1fr;
          }

          .partners-grid {
            grid-template-columns: repeat(2, 1fr);
            padding: 20px;
          }
        }

        /* Contact Section Styles (from index.vto) */
        .contact-section {
          background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
          padding: 90px 20px;
          position: relative;
          overflow: hidden;
        }

        .contact-section::before {
          content: '';
          position: absolute;
          top: -50%;
          right: -20%;
          width: 600px;
          height: 600px;
          background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
          border-radius: 50%;
        }

        .contact-container {
          max-width: 1200px;
          margin: 0 auto;
          position: relative;
          z-index: 1;
        }

        .contact-header {
          text-align: center;
          margin-bottom: 60px;
        }

        .contact-title {
          font-size: 2.8rem;
          font-weight: 800;
          color: white;
          margin-bottom: 20px;
          line-height: 1.2;
        }

        .contact-title span {
          background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
        }

        .contact-subtitle {
          font-size: 1.1rem;
          color: #cbd5e1;
          max-width: 600px;
          margin: 0 auto;
          line-height: 1.7;
        }

        .contact-content {
          max-width: 800px;
          margin: 0 auto;
        }

        .contact-info {
          background: rgba(255, 255, 255, 0.05);
          backdrop-filter: blur(10px);
          border-radius: 20px;
          padding: 40px;
          border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-info h3 {
          color: white;
          font-size: 1.5rem;
          margin-bottom: 30px;
          font-weight: 700;
        }

        .contact-item {
          display: flex;
          align-items: start;
          gap: 15px;
          margin-bottom: 25px;
          color: #cbd5e1;
        }

        .contact-item-icon {
          width: 45px;
          height: 45px;
          background: rgba(59, 130, 246, 0.2);
          border-radius: 12px;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.3rem;
          flex-shrink: 0;
        }

        .contact-item-content {
          flex: 1;
        }

        .contact-item-label {
          font-size: 0.85rem;
          color: #94a3b8;
          text-transform: uppercase;
          letter-spacing: 0.5px;
          margin-bottom: 5px;
        }

        .contact-item-value {
          color: white;
          font-size: 1.05rem;
          font-weight: 500;
        }

        .contact-item-value a {
          color: #60a5fa;
          text-decoration: none;
          transition: color 0.3s ease;
        }

        .contact-item-value a:hover {
          color: #93c5fd;
        }

        .contact-emergency {
          background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(248, 113, 113, 0.2) 100%);
          border-radius: 15px;
          padding: 20px;
          margin-top: 30px;
          border: 1px solid rgba(239, 68, 68, 0.3);
        }

        .contact-emergency-title {
          color: #fca5a5;
          font-size: 1.1rem;
          font-weight: 700;
          margin-bottom: 10px;
        }

        .contact-emergency-number {
          color: white;
          font-size: 1.8rem;
          font-weight: 800;
        }

        .contact-form-wrapper {
          background: white;
          border-radius: 25px;
          padding: 50px;
          box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .form-title {
          font-size: 1.8rem;
          font-weight: 700;
          color: #1e293b;
          margin-bottom: 10px;
        }

        .form-description {
          color: #64748b;
          margin-bottom: 35px;
          font-size: 0.95rem;
        }

        .form-grid {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 25px;
          margin-bottom: 25px;
        }

        .form-group {
          position: relative;
        }

        .form-group.full-width {
          grid-column: 1 / -1;
        }

        .form-label {
          display: block;
          color: #475569;
          font-size: 0.9rem;
          font-weight: 600;
          margin-bottom: 8px;
        }

        .form-label span {
          color: #ef4444;
        }

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

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
          outline: none;
          border-color: #3b82f6;
          box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .form-textarea {
          resize: vertical;
          min-height: 120px;
          font-family: inherit;
        }

        .form-select {
          cursor: pointer;
          appearance: none;
          background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
          background-repeat: no-repeat;
          background-position: right 15px center;
          background-size: 20px;
          padding-right: 45px;
        }

        .form-checkbox-group {
          display: flex;
          align-items: start;
          gap: 10px;
          margin-bottom: 25px;
        }

        .form-checkbox {
          width: 20px;
          height: 20px;
          margin-top: 2px;
          cursor: pointer;
          accent-color: #3b82f6;
        }

        .form-checkbox-label {
          color: #64748b;
          font-size: 0.9rem;
          line-height: 1.5;
          cursor: pointer;
        }

        .form-checkbox-label a {
          color: #3b82f6;
          text-decoration: none;
        }

        .form-checkbox-label a:hover {
          text-decoration: underline;
        }

        .form-button {
          width: 100%;
          padding: 15px 30px;
          background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
          color: white;
          border: none;
          border-radius: 10px;
          font-size: 1.05rem;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s ease;
          position: relative;
          overflow: hidden;
        }

        .form-button:hover {
          transform: translateY(-2px);
          box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
        }

        .form-button:active {
          transform: translateY(0);
        }

        .form-button::after {
          content: '';
          position: absolute;
          top: 50%;
          left: 50%;
          width: 0;
          height: 0;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.5);
          transform: translate(-50%, -50%);
          transition: width 0.6s, height 0.6s;
        }

        .form-button:active::after {
          width: 300px;
          height: 300px;
        }

        .form-success {
          display: none;
          background: #dcfce7;
          border: 1px solid #86efac;
          border-radius: 10px;
          padding: 15px;
          margin-top: 20px;
          color: #166534;
          text-align: center;
        }

        .form-error {
          display: none;
          background: #fee2e2;
          border: 1px solid #fca5a5;
          border-radius: 10px;
          padding: 15px;
          margin-top: 20px;
          color: #991b1b;
          text-align: center;
        }

        @media (max-width: 968px) {
          .contact-content {
            grid-template-columns: 1fr;
            gap: 40px;
          }

          .contact-info {
            order: 2;
          }

          .contact-form-wrapper {
            order: 1;
          }
        }

        @media (max-width: 768px) {
          .contact-section {
            padding: 70px 15px;
          }

          .contact-title {
            font-size: 2.2rem;
          }

          .form-grid {
            grid-template-columns: 1fr;
          }

          .contact-form-wrapper {
            padding: 30px;
          }
        }

        @media (max-width: 480px) {
          .contact-section {
            padding: 60px 10px;
          }

          .contact-title {
            font-size: 1.8rem;
          }

          .contact-subtitle {
            font-size: 0.95rem;
          }

          .contact-form-wrapper {
            padding: 25px 20px;
          }

          .contact-info {
            padding: 25px;
          }

          .form-title {
            font-size: 1.5rem;
          }
        }

        /* Mobile Call Button Styles (from index.vto) */
        .mobile-call-button {
          display: none;
          position: fixed;
          bottom: 20px;
          left: 50%;
          transform: translateX(-50%);
          z-index: 1000;
          background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
          color: white;
          padding: 15px 30px;
          border-radius: 50px;
          text-decoration: none;
          font-weight: 700;
          font-size: 1rem;
          box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4), 0 8px 32px rgba(0, 0, 0, 0.15);
          transition: all 0.3s ease;
          animation: pulseButton 2s infinite;
          width: calc(100% - 40px);
          max-width: 350px;
          text-align: center;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 10px;
        }

        @keyframes pulseButton {

          0%,
          100% {
            transform: translateX(-50%) scale(1);
          }

          50% {
            transform: translateX(-50%) scale(1.02);
          }
        }

        .mobile-call-button:hover {
          background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
          transform: translateX(-50%) scale(1.05);
          box-shadow: 0 6px 30px rgba(239, 68, 68, 0.5), 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .mobile-call-button svg {
          width: 24px;
          height: 24px;
          animation: ring 1s ease-in-out infinite;
        }

        @keyframes ring {

          0%,
          100% {
            transform: rotate(0deg);
          }

          10%,
          30% {
            transform: rotate(-10deg);
          }

          20%,
          40% {
            transform: rotate(10deg);
          }
        }

        .mobile-call-button-text {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          line-height: 1.2;
        }

        .mobile-call-button-label {
          font-size: 0.75rem;
          opacity: 0.9;
          text-transform: uppercase;
          letter-spacing: 0.5px;
        }

        .mobile-call-button-number {
          font-size: 1.1rem;
          font-weight: 800;
        }

        /* Alternative compact version for very small screens */
        @media (max-width: 380px) {
          .mobile-call-button {
            padding: 12px 20px;
            width: auto;
            min-width: 160px;
          }

          .mobile-call-button-label {
            display: none;
          }

          .mobile-call-button-number {
            font-size: 1rem;
          }
        }

        /* Show only on mobile devices */
        @media (max-width: 768px) {
          .mobile-call-button {
            display: flex;
          }

          /* Add padding to footer so button doesn't cover content */
          .footer-section {
            padding-bottom: 30px !important;
          }
        }

        /* Hide on desktop and tablet */
        @media (min-width: 769px) {
          .mobile-call-button {
            display: none !important;
          }
        }

        /* Special styling for iOS devices */
        @supports (-webkit-touch-callout: none) {
          .mobile-call-button {
            bottom: 25px;
            -webkit-tap-highlight-color: transparent;
          }
        }

        /* Emergency badge */
        .mobile-call-emergency {
          position: absolute;
          top: -8px;
          right: 10px;
          background: white;
          color: #dc2626;
          font-size: 0.65rem;
          font-weight: 800;
          padding: 2px 6px;
          border-radius: 10px;
          animation: blink 2s infinite;
        }

        @keyframes blink {

          0%,
          100% {
            opacity: 1;
          }

          50% {
            opacity: 0.7;
          }
        }

        /* Additional SEO-friendly styling */
        .mobile-call-button-wrapper {
          position: fixed;
          bottom: 0;
          left: 0;
          right: 0;
          z-index: 1000;
          pointer-events: none;
        }

        .mobile-call-button-wrapper .mobile-call-button {
          pointer-events: all;
        }

        /* Rich snippet preview enhancement */
        .mobile-call-button::before {
          content: '';
          position: absolute;
          top: -5px;
          left: -5px;
          right: -5px;
          bottom: -5px;
          background: radial-gradient(circle, rgba(239, 68, 68, 0.2) 0%, transparent 70%);
          border-radius: 55px;
          animation: ripple 2s infinite;
          z-index: -1;
        }

        @keyframes ripple {
          0% {
            transform: scale(1);
            opacity: 1;
          }

          100% {
            transform: scale(1.1);
            opacity: 0;
          }
        }

        /* JQ Form Styles - Bootstrap Override */
        #jq_form {
          margin-top: 1.5rem;
        }

        #jq_form .form-control {
          width: 100%;
          padding: 14px 18px;
          background: white;
          border: 2px solid #e2e8f0;
          border-radius: 12px;
          font-size: 0.95rem;
          color: #1e293b;
          transition: all 0.3s ease;
          font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        #jq_form .form-control:hover {
          border-color: #cbd5e1;
        }

        #jq_form .form-control:focus {
          outline: none;
          border-color: #3b82f6;
          box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
          background: #ffffff;
        }

        #jq_form .form-control::placeholder {
          color: #94a3b8;
          font-size: 0.95rem;
        }

        #jq_form textarea.form-control {
          resize: vertical;
          min-height: 100px;
          max-height: 200px;
          line-height: 1.6;
        }

        /* Bootstrap spacing classes */
        #jq_form .my-0 {
          margin-top: 0 !important;
          margin-bottom: 0 !important;
        }

        #jq_form .my-4 {
          margin-top: 1.5rem !important;
          margin-bottom: 1.5rem !important;
        }

        #jq_form .mb-0 {
          margin-bottom: 0 !important;
        }

        #jq_form .mt-3 {
          margin-top: 1rem !important;
        }

        /* Error messages */
        #jq_name,
        #jq_phone,
        #jq_street,
        #jq_city,
        #jq_email,
        #jq_message {
          display: none;
          margin-top: 6px;
          padding: 8px 12px;
          background: #fee2e2;
          border-left: 3px solid #ef4444;
          border-radius: 6px;
          color: #991b1b;
          font-size: 0.875rem;
          font-weight: 600;
          animation: slideDown 0.3s ease-out;
        }

        #jq_name.show,
        #jq_phone.show,
        #jq_street.show,
        #jq_city.show,
        #jq_email.show,
        #jq_message.show {
          display: block;
        }

        /* Submit button */
        #jq_submit {
          width: 100%;
          padding: 16px 24px;
          background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
          color: white;
          border: none;
          border-radius: 12px;
          font-size: 1.05rem;
          font-weight: 700;
          text-transform: uppercase;
          letter-spacing: 0.5px;
          cursor: pointer;
          transition: all 0.3s ease;
          position: relative;
          overflow: hidden;
        }

        #jq_submit:hover {
          transform: translateY(-2px);
          box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
          background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
        }

        #jq_submit:active {
          transform: translateY(0);
        }

        #jq_submit::before {
          content: '';
          position: absolute;
          top: 50%;
          left: 50%;
          width: 0;
          height: 0;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.3);
          transform: translate(-50%, -50%);
          transition: width 0.6s, height 0.6s;
        }

        #jq_submit:active::before {
          width: 300px;
          height: 300px;
        }

        #jq_submit:disabled {
          opacity: 0.7;
          cursor: not-allowed;
          background: #94a3b8;
        }

        /* Bootstrap button override */
        #jq_form .btn {
          border: none;
          padding: 16px 24px;
        }

        #jq_form .fw-bold {
          font-weight: 700 !important;
        }

        #jq_form .text-uppercase {
          text-transform: uppercase !important;
        }

        #jq_form .px-3 {
          padding-left: 1rem !important;
          padding-right: 1rem !important;
        }

        #jq_form .py-2 {
          padding-top: 0.5rem !important;
          padding-bottom: 0.5rem !important;
        }

        /* Success message */
        #jq_success {
          display: none;
          margin-top: 1.5rem;
          padding: 18px 24px;
          background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
          border-left: 4px solid #10b981;
          border-radius: 12px;
          color: #065f46;
          font-size: 0.95rem;
          font-weight: 600;
          line-height: 1.6;
          animation: fadeInScale 0.5s ease-out;
        }

        #jq_success.show {
          display: block;
        }

        @keyframes slideDown {
          from {
            opacity: 0;
            transform: translateY(-10px);
          }

          to {
            opacity: 1;
            transform: translateY(0);
          }
        }

        @keyframes fadeInScale {
          from {
            opacity: 0;
            transform: scale(0.95);
          }

          to {
            opacity: 1;
            transform: scale(1);
          }
        }

        /* Validation states */
        #jq_form .form-control.error {
          border-color: #ef4444;
          background: #fef2f2;
        }

        #jq_form .form-control.success {
          border-color: #10b981;
          background: #f0fdf4;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
          #jq_form .form-control {
            padding: 12px 16px;
            font-size: 1rem;
          }

          #jq_submit {
            padding: 14px 20px;
            font-size: 1rem;
          }

          #jq_form .my-4 {
            margin-top: 1.25rem !important;
            margin-bottom: 1.25rem !important;
          }
        }

        @media (max-width: 480px) {
          #jq_form .form-control {
            padding: 12px 14px;
            border-radius: 10px;
          }

          #jq_submit {
            padding: 14px 18px;
            font-size: 0.95rem;
            border-radius: 10px;
          }
        }

        /* Fixed Phone Buttons */
        .btnFixedD {
          position: fixed;
          bottom: 30px;
          right: 30px;
          z-index: 9999;
          animation: pulsePhone 2s infinite;
        }

        @keyframes pulsePhone {

          0%,
          100% {
            transform: scale(1);
          }

          50% {
            transform: scale(1.05);
          }
        }

        .btnFixedD__btn {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 60px;
          height: 60px;
          background: linear-gradient(135deg, #ef4444, #dc2626);
          border-radius: 50%;
          box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
          transition: all 0.3s ease;
          text-decoration: none;
          position: relative;
        }

        .btnFixedD__btn::before {
          content: '';
          position: absolute;
          width: 100%;
          height: 100%;
          border-radius: 50%;
          background: rgba(239, 68, 68, 0.3);
          animation: ripple-phone 1.5s infinite;
        }

        @keyframes ripple-phone {
          0% {
            transform: scale(1);
            opacity: 1;
          }

          100% {
            transform: scale(1.5);
            opacity: 0;
          }
        }

        .btnFixedD__btn:hover {
          transform: scale(1.1);
          box-shadow: 0 6px 30px rgba(239, 68, 68, 0.4);
          background: linear-gradient(135deg, #dc2626, #b91c1c);
        }

        .btnFixedD__btn svg {
          width: 28px;
          height: 28px;
          fill: white;
        }

        /* Mobile Fixed Button */
        .btnFixed {
          display: none;
          position: fixed;
          bottom: 30px;
          right: 30px;
          z-index: 9999;
          animation: pulsePhone 2s infinite;
        }

        .btnFixed__btn {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 60px;
          height: 60px;
          background: linear-gradient(135deg, #ef4444, #dc2626);
          border-radius: 50%;
          box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
          transition: all 0.3s ease;
          text-decoration: none;
          position: relative;
        }

        .btnFixed__btn::before {
          content: '';
          position: absolute;
          width: 100%;
          height: 100%;
          border-radius: 50%;
          background: rgba(239, 68, 68, 0.3);
          animation: ripple-phone 1.5s infinite;
        }

        .btnFixed__btn:hover {
          transform: scale(1.1);
          box-shadow: 0 6px 30px rgba(239, 68, 68, 0.4);
          background: linear-gradient(135deg, #dc2626, #b91c1c);
        }

        .btnFixed__btn svg {
          width: 28px;
          height: 28px;
          fill: white;
        }

        /* Responsive - Show mobile button on small screens */
        @media (max-width: 768px) {
          .btnFixedD {
            display: none;
          }

          .btnFixed {
            display: block;
          }

          .partners-section {
            padding: 40px 15px;
          }

          .partners-title {
            font-size: 1.8rem;
            margin-bottom: 35px;
          }

          .partners-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 15px;
          }

          .partner-logo {
            width: 140px;
            height: 70px;
            font-size: 0.75rem;
            padding: 12px;
          }
        }

        @media (max-width: 480px) {
          .partners-section {
            padding: 30px 10px;
            margin-bottom: 40px;
          }

          .partners-title {
            font-size: 1.5rem;
            margin-bottom: 30px;
          }

          .partners-grid {
            grid-template-columns: 1fr;
            gap: 12px;
          }

          .partner-logo {
            width: 100%;
            max-width: 200px;
            height: 65px;
            font-size: 0.8rem;
          }
        }