* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --primary: #dc3545;    /* Red */
    --secondary: #007bff;  /* Blue */
    --accent: #c82333;     /* Darker red */
    --background: #f8f9fa; /* Light gray */
    --text: #333;          /* Dark text */
  }

  body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: url('nature-7047433_1280.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
  }

  .container {
    max-width: 1000px;
    padding: 2rem;
    position: relative;
  }

  .hero-section {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
      0 25px 50px -12px rgba(220, 53, 69, 0.15),
      0 0 0 1px rgba(220, 53, 69, 0.1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
  }

  .title-wrapper {
    position: relative;
    margin-bottom: 2rem;
  }

  h1 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dc3545, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(20px);
    animation: float 12s ease-in-out infinite;
  }

  .floating-element:nth-child(1) {
    width: 150px;
    height: 150px;
    background: var(--primary);
    top: -50px;
    left: -50px;
    animation-delay: 0s;
  }

  .floating-element:nth-child(2) {
    width: 100px;
    height: 100px;
    background: var(--secondary);
    bottom: -30px;
    right: -30px;
    animation-delay: -4s;
  }

  .floating-element:nth-child(3) {
    width: 120px;
    height: 120px;
    background: var(--accent);
    top: 50%;
    right: -40px;
    animation-delay: -8s;
  }

  @keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -15px) rotate(3deg); }
    50% { transform: translate(-10px, 20px) rotate(-3deg); }
    75% { transform: translate(-20px, -10px) rotate(2deg); }
  }

  .description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
  }

  /* New Content Sections */
  .content-section {
    margin: 2.5rem 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
  }

  .content-section:nth-child(3) { animation-delay: 0.4s; }
  .content-section:nth-child(4) { animation-delay: 0.6s; }
  .content-section:nth-child(5) { animation-delay: 0.8s; }

  .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #dc3545, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .section-content {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    text-align: justify;
  }

  /* User Type Sections */
  .user-type-section {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    border-top: 6px solid var(--primary);
  }

  .user-type-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #dc3545, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .service-block {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }

  .service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

  /* Service Subsections */
  .benefits-section, .contact-section, .services-section {
    margin: 1.5rem 0;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 3px 15px rgba(220, 53, 69, 0.08);
  }

  .subsection-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
  }

  .benefits-list, .services-list {
    list-style: none;
    padding: 0;
    max-width: 500px;
    margin: 0 auto;
  }

  .benefits-list li, .services-list li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
    margin: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
  }

  .benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
  }

  .services-list li:before {
    content: "🔧";
    position: absolute;
    left: 0;
    font-size: 1rem;
  }

  .contact-info {
    text-align: center;
    margin: 1rem 0;
  }

  .contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin: 0.5rem 0;
  }

  .contact-info strong {
    color: var(--primary);
    font-weight: 600;
  }

  .animated-border {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 24px;
    background: linear-gradient(45deg, #dc354544, #007bff44, #c8233344) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: borderRotate 8s linear infinite;
  }

  @keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text);
    opacity: 0.7;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.6s;
  }

  .tools-icon {
    display: inline-block;
    margin-left: 0.5rem;
    animation: wrenchRotate 5s ease-in-out infinite;
  }

  @keyframes wrenchRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-15deg); }
  }

  .ripple-effect {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 1.5s linear infinite;
    background: rgba(220, 53, 69, 0.1);
  }

  @keyframes ripple {
    to {
      transform: scale(4);
      opacity: 0;
    }
  }

  /* Hover Effects */
  .hero-section:hover {
    transform: translateY(-5px);
    transition: transform 0.5s ease;
  }

  .hero-section:hover .animated-border {
    animation-duration: 4s;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .container {
      padding: 1rem;
    }

    h1 {
      font-size: 2.5rem;
    }

    .description {
      font-size: 1.125rem;
    }

    .section-title {
      font-size: 1.6rem;
    }

    .section-content {
      font-size: 1.1rem;
      text-align: center;
    }

    .user-type-section {
      margin: 2rem 0;
      padding: 1.5rem;
    }

    .user-type-title {
      font-size: 1.6rem;
    }

    .service-block {
      margin: 1.5rem 0;
      padding: 1.2rem;
    }

    .service-title {
      font-size: 1.3rem;
    }

    .subsection-title {
      font-size: 1.2rem;
    }

    .benefits-section, .contact-section, .services-section {
      margin: 1.2rem 0;
      padding: 1rem;
    }

    .benefits-list li, .services-list li {
      font-size: 1rem;
      padding-left: 1.5rem;
    }

    .contact-info p {
      font-size: 1rem;
    }

    .hero-section {
      padding: 2rem;
    }

    .content-section {
      margin: 2rem 0;
    }
  }

  @media (max-width: 480px) {
    h1 {
      font-size: 2rem;
    }

    .section-title {
      font-size: 1.4rem;
    }

    .section-content {
      font-size: 1rem;
      line-height: 1.6;
    }

    .user-type-section {
      margin: 1.5rem 0;
      padding: 1rem;
    }

    .user-type-title {
      font-size: 1.4rem;
    }

    .service-block {
      margin: 1rem 0;
      padding: 1rem;
    }

    .service-title {
      font-size: 1.2rem;
    }

    .subsection-title {
      font-size: 1.1rem;
    }

    .benefits-section, .contact-section, .services-section {
      margin: 0.8rem 0;
      padding: 0.8rem;
    }

    .benefits-list li, .services-list li {
      font-size: 0.95rem;
      padding-left: 1.3rem;
      margin: 0.6rem 0;
    }

    .contact-info p {
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .hero-section {
      padding: 1.5rem;
    }
  }

  /* Mouse move effect */
  .hero-section {
    transition: transform 0.3s ease;
  }