* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background: linear-gradient(135deg, #f3f8ff 0%, #e6f2ff 100%);
      color: #333;
      overflow-x: hidden;
    }

    .insurance-about {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 13px 8%;
      gap: 40px;
      flex-wrap: wrap;
      max-width: 100%;
      margin: 0 auto;
    }

    .insurance-content {
      flex: 1;
      transform: translateX(-50px);
      opacity: 0;
      transition: all 0.8s ease-out;
    }

    .insurance-content.visible {
      transform: translateX(0);
      opacity: 1;
    }

    .section-subtitle {
      color: #0077b6;
      font-size: 18px;
      letter-spacing: 2px;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
      font-weight: 600;
    }

    .section-subtitle::after {
      content: '';
      position: absolute;
      height: 3px;
      width: 40px;
      background: #0077b6;
      bottom: -5px;
      left: 0;
    }

    .section-title {
      font-size: 42px;
      color: #005792;
      margin-bottom: 25px;
      font-weight: 800;
      line-height: 1.2;
    }

    .insurance-description {
      margin-bottom: 20px;
      color: #4a5568;
      line-height: 1.7;
      font-size: 17px;
    }

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

    .feature-item {
      display: flex;
      align-items: center;
      gap: 15px;
      font-weight: 600;
      background: rgba(255, 255, 255, 0.7);
      padding: 12px 15px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .feature-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background: linear-gradient(135deg, #0077b6 0%, #00aaff 100%);
      color: #fff;
      font-size: 16px;
      transition: transform 0.6s;
    }

    .feature-item:hover .feature-icon {
      transform: rotate(360deg);
    }

    .cta-button {
      display: inline-block;
      background: linear-gradient(135deg, #0077b6 0%, #00aaff 100%);
      color: #fff;
      padding: 10px 28px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
      border: none;
      cursor: pointer;
      font-size: 16px;
    }

    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 119, 182, 0.4);
    }

    .insurance-visual {
      flex: 1;
      text-align: center;
      transform: translateX(50px);
      opacity: 0;
      transition: all 0.8s ease-out;
      position: relative;
    }

    .insurance-visual.visible {
      transform: translateX(0);
      opacity: 1;
    }

    .insurance-img {
      max-width: 100%;
      border-radius: 15px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      transition: transform 0.5s;
    }

    .insurance-visual:hover .insurance-img {
      transform: scale(1.02);
    }

    .floating-element {
      position: absolute;
      background: linear-gradient(135deg, #0077b6 0%, #00aaff 100%);
      color: white;
      padding: 15px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      animation: float 5s ease-in-out infinite;
    }

    .floating-element-1 {
      top: 40px;
      right: 30px;
      width: 140px;
      animation-delay: 0s;
    }

    .floating-element-2 {
      bottom: 60px;
      left: 20px;
      width: 160px;
      animation-delay: 1s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }

    /* Stats Section */
    .achievements-section {
      background: linear-gradient(135deg, #005792 0%, #0077b6 100%);
      padding: 80px 8%;
      color: white;
      text-align: center;
    }

    .achievements-grid {
      display: flex;
      justify-content: center;
      gap: 60px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .achievement-item {
      text-align: center;
      padding: 20px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      width: 220px;
      backdrop-filter: blur(5px);
      transition: transform 0.3s;
    }

    .achievement-item:hover {
      transform: translateY(-10px);
    }

    .achievement-number {
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 10px;
      background: linear-gradient(135deg, #ffffff 0%, #c2e9ff 100%);
      
      -webkit-text-fill-color: transparent;
    }

    .achievement-text {
      font-weight: 600;
      font-size: 18px;
      color: #e6f2ff;
    }

    @media (max-width: 1100px) {
      .insurance-about {
        flex-direction: column;
        text-align: center;
      }
      
      .insurance-features {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 30px auto;
      }
      
      .section-subtitle::after {
        left: 50%;
        transform: translateX(-50%);
      }
      
      .floating-element {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 30px;
      }
      
      .achievement-number {
        font-size: 36px;
      }
      
      .achievements-grid {
        gap: 30px;
      }
      
      .achievement-item {
        width: 100%;
        max-width: 250px;
      }
    }