body {
    margin: 0;
    background: linear-gradient(
      180deg,
      #fff -23.05%,
      #eef2f8 47.88%,
      #d6dfee 147.61%
    );
    color: #000;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    line-height: 1.6;
  }
  
  .headers {
    background: #f7f8fa;
    box-shadow: 0px 2px 2px -2px rgba(0, 0, 0, 0.15);
    padding: 6px 20px 6px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .headers-container {
    display: flex;
    align-items: center;
    max-width: 1800px;
    margin: auto;
  }
  
  .logo {
    width: 90px;
    height: 50px;
    padding-left: 30px;
    cursor: pointer;
  }
  
  .logo img {
    width: 100%;
    height: auto;
  }
  
  .right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    padding-right: 15px;
    flex: 1;
  }
  
  .home {
    display: flex;
    align-items: center;
    margin: 10px 0;
  }
  
  .home a span {
    padding-top: 3px;
  }
  
  .home-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #5b5b93;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .home-link:hover {
    color: #3b3b6b;
    text-decoration: underline;
  }
  
  .home-icon {
    stroke: currentColor;
    transition: stroke 0.3s ease;
  }
  
  .profile {
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
  }
  
  .profile-container {
    width: 50px;
    height: 50px;
  }
  
  .profile-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #5b5b93;
    border-radius: 50%;
  }
  
  .details h1 {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    text-transform: capitalize;
    color: #333;
  }
  
  .details button {
    font-size: 12px;
    font-weight: 400;
    color: #e0caca;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .details button:hover {
    color: #5b5b93;
  }

  section{
    background: #fff;
  }
  
  .content {
    max-width: 1300px;
    margin: auto;
    padding: 20px;
  }
  
  .content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 8px;
    margin: 0;
  }
  
  .content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #5b5b93;
    border-radius: 2px;
  }
  
  .content p {
    color: #4a5568;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
  }
  
  .content a {
    color: #5b5b93;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .content a:hover {
    color: #3b3b6b;
    text-decoration: underline;
  }
  
  /* Footer Styles */
  footer {
    background: #eef2f8;
    padding-top: 40px;
    box-shadow: 0px -2px 2px -2px rgba(0, 0, 0, 0.15);
  }
  
  .footer-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 150px;
    padding: 0 20px;
  }
  
  /* .footer-section {
    flex: 1;
    min-width: 200px;
  } */
  
  .footer-section h3 {
    color: #5b5b93;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    margin: 0;
  }
  
  .contact-info p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.9;
    margin: 0;
  }
  
  .contact-info a {
    color: #5b5b93;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .contact-info a:hover {
    color: #3b3b6b;
    text-decoration: underline;
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  
  .footer-link {
    text-decoration: none;
    color: #4a5568;
    font-size: 0.95rem;
    transition: color 0.3s ease;
  }
  
  .footer-link:hover {
    color: #3b3b6b;
    text-decoration: underline;
  }
  
  /* Social Media Icons */
  .social-links {
    margin-top: 15px;
    display: flex;
    gap: 10px;
  }
  
  .social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #5b5b93;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .social-links a:hover {
    background-color: #5b5b93;
    color: #fff;
    transform: scale(1.1);
  }
  
  /* Copyright Section */
  .footer-bottom {
    max-width: 1200px;
    margin: 10px auto 0;
    padding: 20px 20px 10px;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    border-top: 1px solid #dce0e8;
  
    & p {
      margin: 0;
    }
  }
  
  @media (max-width: 576px) {
    .headers {
      backdrop-filter: blur(15px);
      padding: 0 10px;
      height: 50px;
    }
  
    .right {
      padding-right: 0;
    }
    
    .logo {
      padding-left: 0;
      width: 60px;
      height: 30px;
    }
  
    .profile-container {
      width: 40px;
      height: 40px;
    }
  
    .details {
      display: none;
    }

    .home a span {
      font-size: 0.85rem;
    }
  
    .content {
      padding: 15px;
      border-radius: 8px;
    }
  
    .content h2 {
      font-size: 1.2rem;
    }
  
    .content p {
      font-size: 0.95rem;
    }
  
    footer {
      padding-top: 10px;
    }
  
    .footer-container {
      gap: 10px;
    }
  
    .footer-links {
      grid-template-columns: 1fr;
      justify-content: center;
    }
  }
  