 /* Reset body margins and padding */
 body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Full-page background image */
body {
    background: url('nature.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header
{
    margin: 50px auto; /* Center horizontally within the page */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    width: 50%; /* Adjust as needed */
    padding: 20px;
    text-align: center;
    color: white;
}

/* Centered title styling */
.header h1 {
    color: white;
    font-size: 3rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    text-align: center;
}

.child-div {
    border-radius: 8px; /* Rounded corners */
}

#container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.card {
    padding: 1rem; /* Space inside the card */
    margin: 1rem;
    border: 1px solid #ddd; /* Light border for structure */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    background-color: #fff; /* White background for the card */
    flex: 1 1 calc(25% - 10px); /* Each item takes up 25% of the row minus the gap */
}

.card h1 {
    font-size: 1.5rem;
    color: #36454F;
}

.luxury-card {
    background: linear-gradient(145deg, #1a1a1a, #333);
    border: 1px solid #555;
    border-radius: 15px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.1);
    padding: 1rem; /* Space inside the card */
    margin: 1rem;
    text-align: center;
    color: #f5f5f5;
    flex: 1 1 calc(25% - 10px);
  }
  
  .luxury-card h2 {
    font-size: 24px;
    color: #f8b400;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  }
  
  .luxury-card p {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 20px;
  }
  
  .luxury-card button {
    background: linear-gradient(145deg, #f8b400, #d19a00);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 20px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .luxury-card button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
  }
  
  .luxury-card button:active {
    transform: scale(0.95);
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.4);
  }
  
  .T2dutf {
      color: white;
  }
  