        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        

        header {
            background-color: white;
            position: sticky;
            top: 0;
            width: 100%;
            padding: 1rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .scrolled {
            background-color: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
        }

        .logo {
            height: 50px;
            display: flex;
            align-items: center;
            padding-left: 200px;
        }

        .logo img {
            height: 100%;
            width: auto;
        }

        nav {
            display: flex;
            align-items: center;
            padding-right: 200px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 1rem;
            position: relative;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }

        .nav-links a.active {
            font-weight: bold;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: #333;
            bottom: 0;
            left: 0;
        }

        .nav-links a:hover {
            color: #666;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            height: 24px;
            width: 30px;
            position: relative;
        }

        .hamburger span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: #333;
            transition: all 0.3s ease;
            position: absolute;
            left: 0;
        }
        
        .hamburger span:nth-child(1) {
            top: 0;
        }
        
        .hamburger span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }
        
        .hamburger span:nth-child(3) {
            bottom: 0;
        }
        
        .hamburger.active span:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            bottom: 50%;
            transform: translateY(50%) rotate(-45deg);
        }

        /* Mobile view */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .logo {
                padding-left: 10;
            }

            nav {
                padding-right: 10;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                flex-direction: column;
                background-color: rgba(255, 255, 255, 0.4);
                backdrop-filter: blur(10px);
                padding: 1rem;
                gap: 1rem;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                align-items: center;
                text-align: center;
            }

            .nav-links li {
                width: 100%;
                display: flex;
                justify-content: center;
            }

            .nav-links a {
                display: inline-block;
                width: auto;
            }

            .nav-links.active {
                transform: translateY(0);
            }
        }


.custom-footer {
  background-color: #f9f9f9;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
} 

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  width: 160px;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-link {
  padding: 5px 18px;
  border: 1px solid #000;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  width: fit-content;
  transition: all 0.3s ease;
  margin-left: 30px;
}

.quick-link:hover {
  background-color: #000;
  color: #fff;
}

.footer-right p {
  margin: 6px 0;
  font-size: 14px;
  color: #333;
}

.footer-right a {
  color: #000;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-left: 17px;
}

.social-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .footer-links {
    align-items: center;
  }
  
  .quick-link {
    margin-left: 0;
  }
  
  .social-icons {
    justify-content: center;
    margin-left: 0;
  }
}

img {
    max-width: 100%;
    display: block;
    border-radius: 0.5rem; /* rounded-lg */
    object-fit: cover;
    height: 320px;
    width: 600px;
  }
  /* Container */
  .container {
    max-width: 1120px; /* max-w-7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem; /* px-6 */
    padding-right: 1.5rem;
    padding-top: 4rem; /* py-16 */
    padding-bottom: 4rem;
  }
  @media (min-width: 640px) {
    .container {
      padding-left: 2.5rem; /* sm:px-10 */
      padding-right: 2.5rem;
    }
  }
  @media (min-width: 768px) {
    .container {
      padding-left: 4rem; /* md:px-16 */
      padding-right: 4rem;
    }
  }
  @media (min-width: 1024px) {
    .container {
      padding-left: 6rem; /* lg:px-24 */
      padding-right: 6rem;
    }
  }

  /* Header */
  .header {
    max-width: 48rem; /* max-w-3xl */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: -35px;
  }
  .header h1 {
    font-weight: 500; /* extrabold */
    line-height: 1.2;
    font-size: 1.875rem; /* text-3xl */
  }
  @media (min-width: 640px) {
    .header h1 {
      font-size: 2.25rem; /* sm:text-4xl */
    }
  }
  @media (min-width: 768px) {
    .header h1 {
      font-size: 3rem; /* md:text-5xl */
    }
  }
  .header p {
    margin-top: 0.5rem; /* mt-2 */
    font-weight: 200;
    font-size: 0.75rem; /* text-xs */
    color: #2c2c2e; /* gray-500 */
    line-height: 1.4;
  }
  @media (min-width: 640px) {
    .header p {
      font-size: 0.875rem; /* sm:text-sm */
    }
  }
  @media (min-width: 768px) {
    .header p {
      font-size: 1rem; /* md:text-base */
    }
  }

  /* Content wrapper */
  .content-wrapper {
    margin-top: 3rem; /* mt-12 */
    max-width: 1000px; /* max-w-4xl */
    margin-left: auto;
    margin-right: auto;
  }

  /* Image */
  .content-wrapper img {
    width: 100%;
    height: 450px;
    border-radius: 0.5rem;
    object-fit: cover;
  }

  /* Content below image */
  .content-below {
    margin-top: 2rem; /* mt-8 */
    display: flex;
    flex-direction: column;
  }
  @media (min-width: 768px) {
    .content-below {
      flex-direction: row;
      align-items: flex-start;
      gap: 3rem; /* space-x-12 */
    }
  }

  /* Left side: heading + button */
  .left-side {
    flex: 1;
  }
  .left-side h2 {
    font-weight: 500;
    font-size: 1.25rem; /* text-xl */
    line-height: 1.3;
    color: #1a202c; /* gray-900 */
    text-align: left;
    margin: 0;
  }
  @media (min-width: 640px) {
    .left-side h2 {
      font-size: 1.5rem; /* sm:text-2xl */
    }
  }
  @media (min-width: 768px) {
    .left-side h2 {
      font-size: 1.875rem; /* md:text-3xl */
    }
  }
  .btn-contact {
  border: 1px solid #000;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  width: fit-content;
  transition: all 0.3s ease;
  margin-top: 1.5rem; /* mt-6 */
  padding: 0.75rem 1.5rem; /* py-3 px-6 */
  text-align: center;
  }
  @media (min-width: 640px) {
    .btn-contact {
      font-size: 1rem; /* sm:text-base */
    }
  }
  .btn-contact:hover {
    background-color: #121213; /* blue-700 */
    color: #fff;
  }

  /* Right side: paragraphs */
  .right-side {
    flex: 1;
    margin-top: 1.5rem; /* mt-6 */
    color: #000000; /* gray-600 */
    font-size: 0.75rem; /* text-xs */
    line-height: 1.6;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* space-y-2 */
  }
  @media (min-width: 640px) {
    .right-side {
      font-size: 0.875rem; /* sm:text-sm */
    }
  }
  @media (min-width: 768px) {
    .right-side {
      font-size: 1rem; /* md:text-base */
      margin-top: 0;
    }
  }
