/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Basic body styling */
  body {
    font-family: sans-serif;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align at top */
    min-height: 100vh;
    flex-direction: column;
    padding: 2rem;
  }
  
  /* Main content container */
  .content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: auto; /* Allow scrolling if content overflows */
  }
  
  /* Slider container */
  .slider-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    max-height: 800px; /* Fixed height for image slider */
    overflow: hidden;
  }
  
  /* Slider image */
  .slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
  }
  
  .slider-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: contain;
  }
  
  /* Navigation buttons */
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    font-size: 20px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  /* Left button */
  .left {
    left: 10px;
  }
  
  /* Right button */
  .right {
    right: 10px;
  }
  
  /* Text Section */
  .text-section {
    padding: 2rem 0;
    text-align: center;
  }
  
  .text-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .text-section p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
  }
  
  /* Footer */
  footer {
    text-align: center;
    font-size: 10px;
    font-weight: lighter;
    margin-top: 20px;
  }
