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

  :root {
      --primary-color: #f41111cd;
      --secondary-color: #991b1b;
      --accent-color: #ee7272;
      --text-dark: #1e293b;
      --text-light: #64748b;
      --bg-light: #f8f8f8;
      --white: #ffffff;
      --black: #0a0a0a;
      --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  }

  body {
      overflow-x: hidden;
      color: var(--text-dark);
      line-height: 1.6;
  }

  /* Loader */
  .loader-wrapper {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--white);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
  }

  .loader {
      width: 50px;
      height: 50px;
      border: 4px solid var(--bg-light);
      border-top: 4px solid var(--primary-color);
      border-radius: 50%;
      animation: spin 1s linear infinite;
  }

  @keyframes spin {
      0% {
          transform: rotate(0deg);
      }

      100% {
          transform: rotate(360deg);
      }
  }

  /* Navigation */
  nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: var(--white);
      box-shadow: var(--shadow);
      z-index: 1000;
      transition: all 0.3s ease;
  }

  nav.scrolled {
      box-shadow: var(--shadow-lg);
  }

  .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
  }

  .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary-color);
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }

  .nav-menu {
      display: flex;
      list-style: none;
      gap: 2rem;
      align-items: center;
  }

  .nav-menu a {
      text-decoration: none;
      color: var(--text-dark);
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
  }

  .nav-menu a:hover,
  .nav-menu a.active {
      color: var(--primary-color);
  }

  .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary-color);
      transition: width 0.3s ease;
  }

  .nav-menu a:hover::after,
  .nav-menu a.active::after {
      width: 100%;
  }

  .btn-primary {
      background: var(--primary-color);
      color: var(--white);
      padding: 0.6rem 1.5rem;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
  }

  .btn-primary:hover {
      background: var(--secondary-color);
      transform: translateY(-2px);
      box-shadow: var(--shadow);
  }

  .menu-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--text-dark);
  }

  /* Hero Section */
  .hero {
      margin-top: 70px;
      min-height: 90vh;
      display: flex;
      align-items: center;
      background: url('./images/bg.svg') no-repeat center center/cover;
      position: relative;
      overflow: hidden;
  }

  .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, #f5efef 0%, #f288887d 100%);
      opacity: 0.3;
  }

  .hero-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 1;
  }

  .hero-content h1 {
      font-size: 3rem;
      color: var(--black);
      margin-bottom: 1.5rem;
      line-height: 1.2;
  }

  .hero-content p {
      font-size: 1.25rem;
      color: rgba(142, 100, 100, 0.9);
      margin-bottom: 2rem;
  }

  .hero-image {
      position: relative;
  }

  .hero-image img {
      width: 100%;
      border-radius: 20px;
      /* box-shadow: var(--shadow-lg); */
  }

  /* Modal */
  .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 2000;
      justify-content: center;
      align-items: center;
  }

  .modal.active {
      display: flex;
  }

  .modal-content {
      background: var(--white);
      padding: 2rem;
      border-radius: 16px;
      max-width: 400px;
      width: 90%;
      text-align: center;
      animation: modalSlideIn 0.3s ease;
  }

  @keyframes modalSlideIn {
      from {
          transform: translateY(-50px);
          opacity: 0;
      }

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

  .modal-content img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin-bottom: 1rem;
  }

  .modal-content h2 {
      color: var(--primary-color);
      margin-bottom: 1rem;
  }

  .modal-content p {
      color: var(--text-light);
      margin-bottom: 1.5rem;
  }

  /* About Section */
  .about {
      padding: 6rem 2rem;
      background: var(--bg-light);
  }

  .about-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
  }

  .about-image img {
      width: 100%;
      border-radius: 16px;
      box-shadow: var(--shadow-lg);
  }

  .about-content h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      color: var(--text-dark);
  }

  .about-content p {
      color: var(--text-light);
      font-size: 1.1rem;
      line-height: 1.8;
  }

  /* Stats Section */
  .stats {
      padding: 6rem 2rem;
      background: var(--primary-color);
      color: var(--white);
      text-align: center;
  }

  .stats h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
  }

  .stats p {
      font-size: 1.1rem;
      margin-bottom: 3rem;
      opacity: 0.9;
  }

  .stats-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
  }

  .stat-card {
      background: rgba(255, 255, 255, 0.1);
      padding: 2rem;
      border-radius: 16px;
      backdrop-filter: blur(10px);
      transition: transform 0.3s ease;
  }

  .stat-card:hover {
      transform: translateY(-10px);
  }

  .stat-card i {
      font-size: 3rem;
      margin-bottom: 1rem;
  }

  .stat-card h3 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
  }

  /* Team Section */
  .team {
      padding: 6rem 2rem;
      background: var(--white);
  }

  .team h2 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: var(--text-dark);
  }

  .team-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
  }

  .team-card {
      background: var(--white);
      padding: 2rem;
      border-radius: 16px;
      text-align: center;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
  }

  .team-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
  }

  .team-card img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      margin-bottom: 1rem;
      object-fit: cover;
  }

  .team-card h3 {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
      color: var(--text-dark);
  }

  .team-card p {
      color: var(--text-light);
  }

  /* Contact Section */
  .contact {
      padding: 6rem 2rem;
      background: var(--bg-light);
  }

  .contact h2 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: var(--text-dark);
  }

  .contact-container {
      max-width: 800px;
      margin: 0 auto;
      background: var(--white);
      padding: 3rem;
      border-radius: 16px;
      box-shadow: var(--shadow-lg);
  }

  .form-group {
      margin-bottom: 1.5rem;
  }

  .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      color: var(--text-dark);
      font-weight: 500;
  }

  .form-group input,
  .form-group textarea {
      width: 100%;
      padding: 0.75rem;
      border: 2px solid #e2e8f0;
      border-radius: 8px;
      font-size: 1rem;
      transition: border-color 0.3s ease;
  }

  .form-group input:focus,
  .form-group textarea:focus {
      outline: none;
      border-color: var(--primary-color);
  }

  .form-group textarea {
      resize: vertical;
      min-height: 120px;
  }

  /* Footer */
  footer {
      background: var(--text-dark);
      color: var(--white);
      padding: 3rem 2rem 1rem;
  }

  .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
  }

  .footer-section h3 {
      margin-bottom: 1rem;
      color: var(--white);
  }

  .footer-section a {
      display: block;
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      margin-bottom: 0.5rem;
      transition: color 0.3s ease;
  }

  .footer-section a:hover {
      color: var(--white);
  }

  .social-links {
      display: flex;
      gap: 1rem;
  }

  .social-links a {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      transition: background 0.3s ease;
  }

  .social-links a:hover {
      background: var(--primary-color);
  }

  .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.7);
  }

  /* Responsive */
  @media (max-width: 768px) {
      .menu-toggle {
          display: block;
      }

      .nav-menu {
          position: fixed;
          top: 70px;
          left: -100%;
          width: 100%;
          height: calc(100vh - 70px);
          background: var(--white);
          flex-direction: column;
          padding: 2rem;
          transition: left 0.3s ease;
          box-shadow: var(--shadow-lg);
      }

      .nav-menu.active {
          left: 0;
      }

      .hero-container {
          grid-template-columns: 1fr;
          text-align: center;
      }

      .hero-content h1 {
          font-size: 2rem;
      }

      .about-container {
          grid-template-columns: 1fr;
      }

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

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