body {
    font-family: 'Inter', sans-serif;
    background-color: #F5F5DC; /* Main Color */
    color: #333333; /* Good black font color */
}
.title {
    font-family: 'Playfair Display', serif;
    color: #333333; /* Secondary Color */
}

.highlight {
    position: relative;
    display: inline-block;
    color: #333333;
}
.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.2em;
    background-color: #ffcc00;
    z-index: -1;
    transition: height 0.3s ease, background-color 0.3s ease;
}
.highlight:hover::after {
    height: 0.4em;
    background-color: #ff9900; /* Slightly darker shade on hover */
}
.button-primary {
    background-color: #ffcc00; /* Accent Color */
    color: #333333; /* Good black font color */
}

/* FAQ Section */
.overflow-hidden {
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  
  .rotate-45 {
    transform: rotate(45deg);
  }
  .floating-image {
    animation: float 3s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 0;
  }
  
  .container .card {
    width: 280px;
    height: 400px;
    position: relative;
    margin: 30px;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.8);
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    text-align: center;
  }
  
  .card .content {
    padding: 20px;
    transition: 0.8s all ease;
    color: #ccc;
    transform: translateY(100px);
    opacity: 0;
  }
  
  .card:hover .content {
    transform: translateY(0px);
    opacity: 1;
  }
  
  .card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire card */
    filter: brightness(1.5); /* Increase brightness */
    opacity: 0.7; /* Adjust opacity as needed */
    z-index: -1; /* Keep behind content */
  }
  
  .card .content h2 {
    color: #fff;
    font-weight: 400;
    margin-bottom: 10px;
  }
  
  .card .content a {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    padding: 8px 30px 11px;
    border: 2px solid #fff;
    text-transform: uppercase;
    color: #fff;
    border-radius: 50px;
    box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.8);
    transition: 0.8s all ease;
  }
  
  .card .content a:hover {
    background: #9c27b0;
  }