/* Reset and Base Styles */
@font-face {
    font-family: 'Inter';
    src: url('../../fonts/iconfonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
  }
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  body {
      font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f5f7fa;
      overflow-x: hidden;
  }
  @font-face {
    font-family: 'Inter';
    src: url('../../fonts/iconfonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
  }
  /* Container */
  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }
  
  /* Hero Section */
  .test-lab-hero {
      padding: 80px 0 100px;
      background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
      position: relative;
  }
  .test-lab-hero::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 14%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(217 234 248 / 60%));
      pointer-events: none;
  }
  
  .hero-content {
      text-align: center;
      margin-bottom: 60px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s ease forwards;
  }
  
  @keyframes fadeInUp {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  .hero-subtitle-box {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
  }
  .hero-subtitle {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      color: #a8aaaa;
      text-transform: uppercase;
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeIn 0.8s ease 0.2s forwards;
      background: #2ac0c12e;
      padding: 4px 8px;
      border-radius: 120px;
  }
  
  @keyframes fadeIn {
      to {
          opacity: 1;
      }
  }
  
  .hero-title {
      font-size: 48px;
      font-weight: 800;
      color: #1a1a2e;
      line-height: 1.2;
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeInUp 1s ease 0.4s forwards;
  }
  
  .hero-slogan {
      font-size: 48px;
      font-weight: 800;
      color: #2AC0C1;
      line-height: 1.2;
      margin-bottom: 30px;
      opacity: 0;
      animation: fadeInUp 1s ease 0.6s forwards;
  }
  
  .hero-description {
      font-size: 18px;
      line-height: 1.8;
      color: #666;
      max-width: 800px;
      margin: 0 auto;
      opacity: 0;
      animation: fadeInUp 1s ease 0.8s forwards;
  }
  
  /* Hero Image */
  .hero-image {
      position: relative;
      margin: 0 auto;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
      opacity: 0;
      transform: scale(0.95);
      animation: zoomIn 1s ease 1s forwards;
  }
  
  @keyframes zoomIn {
      to {
          opacity: 1;
          transform: scale(1);
      }
  }
  
  .hero-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.6s ease;
  }
  
  .hero-image:hover img {
      transform: scale(1.05);
  }
  
  /* Responsive Design */
  @media screen and (max-width: 1024px) {
      .hero-title,
      .hero-slogan {
          font-size: 40px;
      }
      
      .hero-description {
          font-size: 15px;
      }
      
      .test-lab-hero {
          padding: 60px 0 80px;
      }
  }
  
  @media screen and (max-width: 768px) {
      .container {
          padding: 0 16px;
      }
      
      .test-lab-hero {
          padding: 40px 0 60px;
      }
      
      .hero-content {
          margin-bottom: 40px;
      }
      
      .hero-subtitle {
          font-size: 11px;
          letter-spacing: 1.5px;
          margin-bottom: 16px;
      }
      
      .hero-title,
      .hero-slogan {
          font-size: 32px;
          margin-bottom: 16px;
      }
      
      .hero-description {
          font-size: 14px;
          line-height: 1.7;
      }
      
      .hero-image {
          border-radius: 20px;
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
      }
  }
  
  @media screen and (max-width: 480px) {
      .test-lab-hero {
          padding: 30px 0 40px;
      }
      
      .hero-subtitle {
          font-size: 10px;
          letter-spacing: 1px;
      }
      
      .hero-title,
      .hero-slogan {
          font-size: 26px;
          margin-bottom: 12px;
      }
      
      .hero-description {
          font-size: 13px;
      }
      
      .hero-image {
          border-radius: 16px;
      }
  }
  
  /* Smooth Scrolling */
  html {
      scroll-behavior: smooth;
  }
  
  /* Selection Color */
  ::selection {
      background-color: #4ecdc4;
      color: #fff;
  }
  
  ::-moz-selection {
      background-color: #4ecdc4;
      color: #fff;
  }
  
  /* Why Section */
  .why-section {
      padding: 100px 0;
      background-color: #ffffff;
      position: relative;
  }
  
  .why-title {
      font-size: 36px;
      font-weight: 800;
      color: #1a1a2e;
      text-align: center;
      margin-bottom: 50px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease 0.3s forwards;
  }
  
  .why-description {
      font-size: 24px;
      line-height: 2;
      color: #666;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
      font-style: italic;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease 0.6s forwards;
  }
  
  .why-description em {
      font-style: italic;
      color: #666;
  }
  
  .why-description strong {
      font-weight: 800;
      color: #1a1a2e;
      font-style: normal;
  }
  
  /* Responsive Design for Why Section */
  @media screen and (max-width: 1024px) {
      .why-section {
          padding: 80px 0;
      }
      
      .why-title {
          font-size: 32px;
          margin-bottom: 40px;
      }
      
      .why-description {
          font-size: 17px;
          line-height: 1.9;
      }
  }
  
  @media screen and (max-width: 768px) {
      .why-section {
          padding: 60px 0;
      }
      
      .why-title {
          font-size: 28px;
          margin-bottom: 30px;
      }
      
      .why-description {
          font-size: 16px;
          line-height: 1.8;
      }
  }
  
  @media screen and (max-width: 480px) {
      .why-section {
          padding: 40px 0;
      }
      
      .why-title {
          font-size: 24px;
          margin-bottom: 24px;
      }
      
      .why-description {
          font-size: 14px;
          line-height: 1.7;
      }
  }
  
  /* Features Section */
  .features-section {
      padding: 100px 0;
      background-color: #f5f7fa;
  }
  
  .features-title {
      font-size: 36px;
      font-weight: 800;
      color: #1a1a2e;
      text-align: center;
      margin-bottom: 80px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease 0.3s forwards;
  }
  
  .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
  }
  
  .feature-card {
      background-color: #ffffff;
      border-radius: 20px;
      padding: 50px 40px;
      text-align: center;
      transition: all 0.4s ease;
      opacity: 0;
      transform: translateY(30px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }
  
  .feature-card:nth-child(1) {
      background: linear-gradient(135deg, #e8f8f5 0%, #ffffff 100%);
      animation: fadeInUp 0.8s ease 0.5s forwards;
  }
  
  .feature-card:nth-child(2) {
      background: linear-gradient(135deg, #f3e8ff 0%, #ffffff 100%);
      animation: fadeInUp 0.8s ease 0.7s forwards;
  }
  
  .feature-card:nth-child(3) {
      background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
      animation: fadeInUp 0.8s ease 0.9s forwards;
  }
  
  .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .feature-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      font-size: 32px;
      transition: all 0.3s ease;
      background-color: white;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }
  
  .feature-card:nth-child(1) .feature-icon {
      color: #2ecc71;
  }
  
  .feature-card:nth-child(2) .feature-icon {
      color: #9b59b6;
  }
  
  .feature-card:nth-child(3) .feature-icon {
      color: #2196f3;
  }
  
  .feature-card .feature-icon .iconfont {
      font-size: 34px;
  }
  .feature-card-title {
      font-size: 20px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 20px;
      line-height: 1.4;
  }
  
  .feature-card-description {
      font-size: 14px;
      line-height: 1.8;
      color: #666;
  }
  
  /* Responsive Design for Features Section */
  @media screen and (max-width: 1024px) {
      .features-section {
          padding: 80px 0;
      }
      
      .features-title {
          font-size: 32px;
          margin-bottom: 60px;
      }
      
      .features-grid {
          gap: 30px;
      }
      
      .feature-card {
          padding: 40px 30px;
      }
      
      .feature-card-title {
          font-size: 18px;
      }
  }
  
  @media screen and (max-width: 768px) {
      .features-section {
          padding: 60px 0;
      }
      
      .features-title {
          font-size: 28px;
          margin-bottom: 40px;
      }
      
      .features-grid {
          grid-template-columns: 1fr;
          gap: 24px;
      }
      
      .feature-card {
          padding: 36px 28px;
      }
      
      .feature-icon {
          width: 56px;
          height: 56px;
          font-size: 28px;
          margin-bottom: 24px;
      }
      
      .feature-card-title {
          font-size: 18px;
          margin-bottom: 16px;
      }
      
      .feature-card-description {
          font-size: 14px;
      }
  }
  
  @media screen and (max-width: 480px) {
      .features-section {
          padding: 40px 0;
      }
      
      .features-title {
          font-size: 24px;
          margin-bottom: 32px;
      }
      
      .feature-card {
          padding: 32px 24px;
      }
      
      .feature-icon {
          width: 52px;
          height: 52px;
          font-size: 26px;
          margin-bottom: 20px;
      }
      
      .feature-card-title {
          font-size: 17px;
      }
      
      .feature-card-description {
          font-size: 13px;
      }
  }
  
  /* Lab Solutions Section */
  .lab-solutions-section {
      padding: 100px 0;
      background-color: #ffffff;
  }
  
  .lab-solutions-title {
      font-size: 36px;
      font-weight: 800;
      color: #1a1a2e;
      text-align: center;
      margin-bottom: 80px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease 0.3s forwards;
  }
  
  .solutions-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
  }
  
  .solution-card {
      background-color: #ffffff;
      border-radius: 20px;
      padding: 50px 40px;
      transition: all 0.4s ease;
      opacity: 0;
      transform: translateY(30px);
      position: relative;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  }
  
  .solution-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, transparent, #4ecdc4, transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
  }
  
  .solution-card:hover::before {
      opacity: 1;
  }
  
  .solution-card:nth-child(1) {
      animation: fadeInUp 0.8s ease 0.5s forwards;
  }
  
  .solution-card:nth-child(2) {
      animation: fadeInUp 0.8s ease 0.7s forwards;
  }
  
  .solution-card:nth-child(3) {
      animation: fadeInUp 0.8s ease 0.9s forwards;
  }
  
  .solution-card:nth-child(4) {
      animation: fadeInUp 0.8s ease 1.1s forwards;
  }
  
  .solution-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
      background-color: #ffffff;
  }
  
  .solution-header {
      display: flex;
      align-items: flex-start;
      margin-bottom: 30px;
  }
  
  .solution-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-right: 20px;
      flex-shrink: 0;
      transition: all 0.3s ease;
  }
  
  .solution-card:nth-child(1) .solution-icon {
      background-color: #e3f2fd;
      color: #2196f3;
  }
  
  .solution-card:nth-child(2) .solution-icon {
      background-color: #e8f5e9;
      color: #4caf50;
  }
  
  .solution-card:nth-child(3) .solution-icon {
      background-color: #f3e5f5;
      color: #9c27b0;
  }
  
  .solution-card:nth-child(4) .solution-icon {
      background-color: #fff3e0;
      color: #ff9800;
  }
  
  /* .solution-card:hover .solution-icon {
      transform: scale(1.1) rotate(-5deg);
  } */
  
  .solution-card .solution-icon .iconfont {
      font-size: 24px;
  }
  
  .solution-header-content {
      flex: 1;
  }
  
  .solution-card-title {
      font-size: 20px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 8px;
      line-height: 1.3;
  }
  
  .solution-card-subtitle {
      font-size: 13px;
      font-weight: 600;
      color: #4ecdc4;
      margin-bottom: 0;
  }
  
  .solution-label {
      font-size: 11px;
      font-weight: 700;
      color: #999;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 16px;
  }
  
  .solution-card-description {
      font-size: 14px;
      line-height: 1.9;
      color: #666;
  }
  
  /* Responsive Design for Lab Solutions Section */
  @media screen and (max-width: 1024px) {
      .lab-solutions-section {
          padding: 80px 0;
      }
      
      .lab-solutions-title {
          font-size: 32px;
          margin-bottom: 60px;
      }
      
      .solutions-grid {
          gap: 30px;
      }
      
      .solution-card {
          padding: 40px 32px;
      }
  }
  
  @media screen and (max-width: 768px) {
      .lab-solutions-section {
          padding: 60px 0;
      }
      
      .lab-solutions-title {
          font-size: 28px;
          margin-bottom: 40px;
      }
      
      .solutions-grid {
          grid-template-columns: 1fr;
          gap: 24px;
      }
      
      .solution-card {
          padding: 36px 28px;
      }
      
      .solution-icon {
          width: 46px;
          height: 46px;
          font-size: 22px;
          margin-right: 16px;
      }
      
      .solution-card-title {
          font-size: 18px;
      }
      
      .solution-card-subtitle {
          font-size: 12px;
      }
  }
  
  @media screen and (max-width: 480px) {
      .lab-solutions-section {
          padding: 40px 0;
      }
      
      .lab-solutions-title {
          font-size: 24px;
          margin-bottom: 32px;
      }
      
      .solution-card {
          padding: 32px 24px;
      }
      
      .solution-header {
          margin-bottom: 24px;
      }
      
      .solution-icon {
          width: 44px;
          height: 44px;
          font-size: 20px;
          margin-right: 14px;
      }
      
      .solution-card-title {
          font-size: 17px;
      }
      
      .solution-card-description {
          font-size: 13px;
          line-height: 1.8;
      }
  }
  
  /* Status Board Section */
  .status-board-section {
      padding: 100px 0;
      background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
      position: relative;
      overflow: hidden;
  }
  
  .status-board-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      animation: float 8s ease-in-out infinite;
  }
  
  .status-board-section::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -5%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(78, 205, 196, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      animation: float 10s ease-in-out infinite reverse;
  }
  
  @keyframes float {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(30px, 30px); }
  }
  
  .status-board-title {
      font-size: 40px;
      font-weight: 800;
      color: #ffffff;
      text-align: center;
      margin-bottom: 16px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease 0.3s forwards;
  }
  
  .status-board-subtitle {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.6);
      text-align: center;
      margin-bottom: 60px;
      opacity: 0;
      animation: fadeIn 0.8s ease 0.5s forwards;
  }
  
  .status-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
  }
  
  .status-item {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 28px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.4s ease;
      opacity: 0;
      transform: translateY(30px);
      backdrop-filter: blur(10px);
      position: relative;
      overflow: hidden;
  }
  
  .status-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, transparent 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
  }
  
  .status-item:hover::before {
      opacity: 1;
  }
  
  .status-item:nth-child(1) {
      animation: fadeInUp 0.8s ease 0.6s forwards;
  }
  
  .status-item:nth-child(2) {
      animation: fadeInUp 0.8s ease 0.7s forwards;
  }
  
  .status-item:nth-child(3) {
      animation: fadeInUp 0.8s ease 0.8s forwards;
  }
  
  .status-item:nth-child(4) {
      animation: fadeInUp 0.8s ease 0.9s forwards;
  }
  
  .status-item:nth-child(5) {
      animation: fadeInUp 0.8s ease 1s forwards;
  }
  
  .status-item:nth-child(6) {
      animation: fadeInUp 0.8s ease 1.1s forwards;
  }
  
  .status-item:hover {
      transform: translateY(-6px);
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(78, 205, 196, 0.3);
      box-shadow: 0 12px 40px rgba(78, 205, 196, 0.15);
  }
  
  .status-item-left {
      display: flex;
      align-items: center;
      flex: 1;
      position: relative;
      z-index: 1;
  }
  
  .status-bullet {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: #4ecdc4;
      margin-right: 16px;
      flex-shrink: 0;
      box-shadow: 0 0 12px rgba(78, 205, 196, 0.6);
      animation: pulse 2s ease infinite;
  }
  
  @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.7; transform: scale(1.2); }
  }
  
  .status-item-text {
      font-size: 15px;
      font-weight: 600;
      color: #ffffff;
      line-height: 1.4;
  }
  
  .status-badge {
      display: flex;
      align-items: center;
      padding: 3px 13px;
      border-radius: 20px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
  }
  
  .status-badge.verified {
      background-color: rgba(78, 205, 196, 0.15);
      color: #4ecdc4;
      border: 1px solid rgba(78, 205, 196, 0.3);
  }
  
  .status-badge.testing {
      background-color: rgba(255, 152, 0, 0.15);
      color: #ff9800;
      border: 1px solid rgba(255, 152, 0, 0.3);
  }
  
  .status-badge i {
      margin-left: 6px;
      font-size: 16px;
  }
  
  /* Responsive Design for Status Board Section */
  @media screen and (max-width: 1024px) {
      .status-board-section {
          padding: 80px 0;
      }
      
      .status-board-title {
          font-size: 36px;
      }
      
      .status-grid {
          gap: 20px;
      }
      
      .status-item {
          padding: 24px 28px;
      }
  }
  
  @media screen and (max-width: 768px) {
      .status-board-section {
          padding: 60px 0;
      }
      
      .status-board-title {
          font-size: 32px;
          margin-bottom: 12px;
      }
      
      .status-board-subtitle {
          font-size: 14px;
          margin-bottom: 40px;
      }
      
      .status-grid {
          grid-template-columns: 1fr;
          gap: 16px;
      }
      
      .status-item {
          padding: 20px 24px;
      }
      
      .status-item-text {
          font-size: 14px;
      }
      
      .status-badge {
          padding: 5px 12px;
          font-size: 10px;
      }
  }
  
  @media screen and (max-width: 480px) {
      .status-board-section {
          padding: 40px 0;
      }
      
      .status-board-title {
          font-size: 28px;
      }
      
      .status-board-subtitle {
          font-size: 13px;
      }
      
      .status-item {
          padding: 18px 20px;
      }
      
      .status-bullet {
          width: 6px;
          height: 6px;
          margin-right: 12px;
      }
      
      .status-item-text {
          font-size: 13px;
      }
  }
  
  /* Privacy Section */
  .privacy-section {
      padding: 120px 0;
      background-color: white;
  }
  
  .privacy-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
  }
  
  .privacy-text {
      opacity: 0;
      transform: translateX(-30px);
      animation: slideInLeft 0.8s ease 0.3s forwards;
  }
  
  @keyframes slideInLeft {
      to {
          opacity: 1;
          transform: translateX(0);
      }
  }
  
  .privacy-title {
      font-size: 40px;
      font-weight: 800;
      color: #1a1a2e;
      line-height: 1.3;
      margin-bottom: 24px;
  }
  
  .privacy-title-highlight {
      color: #4ecdc4;
      display: block;
  }
  
  .privacy-description {
      font-size: 15px;
      line-height: 1.9;
      color: #666;
      margin-bottom: 32px;
  }
  
  .privacy-features {
      list-style: none;
      margin-bottom: 32px;
  }
  
  .privacy-feature-item {
      display: flex;
      align-items: center;
      margin-bottom: 16px;
      font-size: 15px;
      font-weight: 600;
      color: #1a1a2e;
      opacity: 0;
      transform: translateX(-20px);
  }
  
  .privacy-feature-item:nth-child(1) {
      animation: slideInLeft 0.6s ease 0.6s forwards;
  }
  
  .privacy-feature-item:nth-child(2) {
      animation: slideInLeft 0.6s ease 0.8s forwards;
  }
  
  .privacy-feature-item:nth-child(3) {
      animation: slideInLeft 0.6s ease 1s forwards;
  }
  
  .privacy-feature-item i {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background-color: #d4f4dd;
      color: #4ecdc4;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 12px;
      font-size: 12px;
      flex-shrink: 0;
  }
  
  .privacy-tagline {
      font-size: 16px;
      font-weight: 700;
      color: #1a1a2e;
  }
  
  .privacy-image {
      position: relative;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
      opacity: 0;
      transform: translateX(30px);
      animation: slideInRight 0.8s ease 0.5s forwards;
  }
  
  @keyframes slideInRight {
      to {
          opacity: 1;
          transform: translateX(0);
      }
  }
  
  .privacy-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.6s ease;
  }
  
  .privacy-image:hover img {
      transform: scale(1.05);
  }
  
  @keyframes floatShield {
      0%, 100% { transform: translate(-50%, -50%) translateY(0); }
      50% { transform: translate(-50%, -50%) translateY(-10px); }
  }
  
  /* Responsive Design for Privacy Section */
  @media screen and (max-width: 1024px) {
      .privacy-section {
          padding: 100px 0;
      }
      
      .privacy-content {
          gap: 60px;
      }
      
      .privacy-title {
          font-size: 36px;
      }
  }
  
  @media screen and (max-width: 768px) {
      .privacy-section {
          padding: 80px 0;
      }
      
      .privacy-content {
          grid-template-columns: 1fr;
          gap: 50px;
      }
      
      .privacy-title {
          font-size: 32px;
          margin-bottom: 20px;
      }
      
      .privacy-description {
          font-size: 14px;
          margin-bottom: 28px;
      }
      
      .privacy-features {
          margin-bottom: 28px;
      }
      
      .privacy-feature-item {
          font-size: 14px;
          margin-bottom: 14px;
      }
      
      .privacy-tagline {
          font-size: 15px;
      }
      
      .privacy-image {
          border-radius: 24px;
      }
  }
  
  @media screen and (max-width: 480px) {
      .privacy-section {
          padding: 60px 0;
      }
      
      .privacy-content {
          gap: 40px;
      }
      
      .privacy-title {
          font-size: 28px;
      }
      
      .privacy-description {
          font-size: 13px;
      }
      
      .privacy-feature-item {
          font-size: 13px;
      }
      
      .privacy-feature-item i {
          width: 22px;
          height: 22px;
          font-size: 11px;
      }
      
      .privacy-tagline {
          font-size: 14px;
      }
      
      .privacy-image {
          border-radius: 20px;
      }
  }
  
  /* Products Section */
  .products-section {
      padding: 120px 0;
      background-color: #f5f7fa;
  }
  .products-section .container {
      background-color: white;
      padding: 30px 60px;
      border-radius: 54px;
  }
  
  .products-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 80px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease 0.3s forwards;
  }
  
  .products-title {
      font-size: 40px;
      font-weight: 800;
      color: #1a1a2e;
      line-height: 1.3;
      margin: 30px 0px;
  }
  
  .products-description {
      font-size: 16px;
      line-height: 1.8;
      color: #666;
  }
  
  .products-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 32px;
      max-width: 1200px;
      margin: 0 auto 60px;
  }
  
  .product-card {
      background-color: #ffffff;
      border-radius: 20px;
      padding: 26px 20px;
      text-align: left;
      transition: all 0.4s ease;
      opacity: 0;
      transform: translateY(30px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
      grid-column: span 2;
  }
  
  .product-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(78, 205, 196, 0.05) 0%, transparent 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
  }
  
  .product-card:hover::before {
      opacity: 1;
  }
  
  .product-card:nth-child(1) {
      background: linear-gradient(135deg, #e8f8f5 0%, #ffffff 100%);
      animation: fadeInUp 0.8s ease 1.3s forwards;
  }
  
  .product-card:nth-child(2) {
      background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
      animation: fadeInUp 0.8s ease 0.9s forwards;
  }
  
  .product-card:nth-child(3) {
      background: linear-gradient(135deg, #f3e5f5 0%, #ffffff 100%);
      animation: fadeInUp 0.8s ease 0.5s forwards;
  }
  
  .product-card:nth-child(4) {
      background: linear-gradient(135deg, #fff3e0 0%, #ffffff 100%);
      animation: fadeInUp 0.8s ease 0.9s forwards;
      grid-column: 2 / 4;
  }
  
  .product-card:nth-child(5) {
      background: linear-gradient(135deg, #fce4ec 0%, #ffffff 100%);
      animation: fadeInUp 0.8s ease 1.3s forwards;
      grid-column: 4 / 6;
  }
  
  .product-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  }
  
  .product-icon {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      font-size: 32px;
      transition: all 0.4s ease;
      position: relative;
      background-color: white;
      z-index: 1;
  }
  
  .product-card:nth-child(1) .product-icon {
      color: #4ecdc4;
  }
  
  .product-card:nth-child(2) .product-icon {
      color: #66bb6a;
  }
  
  .product-card:nth-child(3) .product-icon {
      color: #ab47bc;
  }
  
  .product-card:nth-child(4) .product-icon {
      color: #ffa726;
  }
  
  .product-card:nth-child(5) .product-icon {
      color: #ec407a;
  }
  
  .product-card .product-icon img {
    width: 50px;
    height: 50px;
  }
  
  .product-card-title {
      font-size: 20px;
      font-weight: 700;
      color: #1a1a2e;
      line-height: 1.4;
      position: relative;
      margin: 15px 0;
      z-index: 1;
  }
  
  .product-card-description {
      font-size: 14px;
      line-height: 1.7;
      color: #666;
      margin-bottom: 24px;
      position: relative;
      height: 36px;
      z-index: 1;
  }
  
  .product-link {
      display: inline-flex;
      align-items: center;
      font-size: 14px;
      font-weight: 600;
      color: #4ecdc4;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
  }
  
  .product-link:hover {
      color: #3ab8b0;
      transform: translateX(4px);
  }
  
  .product-link::after {
      content: '→';
      margin-left: 6px;
      transition: margin-left 0.3s ease;
  }
  
  .product-link:hover::after {
      margin-left: 10px;
  }
  
  .products-footer {
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
      padding-top: 40px;
      opacity: 0;
      animation: fadeIn 0.8s ease 1.5s forwards;
  }
  
  .products-footer-text {
      font-size: 12px;
      line-height: 1.8;
      color: #999;
      letter-spacing: 0.5px;
      text-transform: uppercase;
  }
  
  /* Responsive Design for Products Section */
  @media screen and (max-width: 1024px) {
      .products-section {
          padding: 100px 0;
      }
      
      .products-header {
          margin-bottom: 60px;
      }
      
      .products-title {
          font-size: 36px;
      }
      
      .products-grid {
          gap: 28px;
      }
      
      .product-card {
          padding: 44px 36px;
      }
  }
  
  @media screen and (max-width: 768px) {
      .products-section {
          padding: 80px 0;
      }
      
      .products-header {
          margin-bottom: 50px;
      }
      
      .products-title {
          font-size: 32px;
          margin-bottom: 20px;
      }
      
      .products-description {
          font-size: 15px;
      }
      
      .products-grid {
          display: flex;
          flex-direction: column;
          margin-bottom: 50px;
      }
      
      .product-card {
          padding: 40px 32px;
      }
      
      .product-icon {
          width: 64px;
          height: 64px;
          font-size: 30px;
          margin-bottom: 24px;
      }
      
      .product-card-title {
          font-size: 19px;
      }
      
      .products-footer {
          padding-top: 32px;
      }
      .products-section .container {
          padding: 16px;
      }
  }
  
  @media screen and (max-width: 480px) {
      .products-section {
          padding: 60px 0;
      }
      
      .products-header {
          margin-bottom: 40px;
      }
      
      .products-title {
          font-size: 28px;
      }
      
      .products-description {
          font-size: 14px;
      }
      
      .products-grid {
          margin-bottom: 40px;
      }
      
      .product-card {
          padding: 36px 28px;
      }
      
      .product-icon {
          width: 60px;
          height: 60px;
          font-size: 28px;
          margin-bottom: 20px;
      }
      
      .product-card-title {
          font-size: 18px;
      }
      
      .product-card-description {
          font-size: 13px;
      }
      
      .products-footer-text {
          font-size: 11px;
      }
  }
  