/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background: #F5F5F5;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Header */
  header {
    background: #8AA07D;
    color: white;
    padding: 20px 0;
    text-align: center;
  }
  
  nav ul {
    list-style: none;
    padding: 0;
  }
  
  nav ul li {
    display: inline;
    margin: 0 15px;
  }
  
  nav a {
    color: white;
    text-decoration: none;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    background: #CC7357;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
  }
  
  /* Hero Section */
  .hero {
    background: url('images/yoga-hero.jpg') no-repeat center/cover;
    color: white;
    text-align: center;
    padding: 100px 0;
  }
  
  /* Classes/Schedule */
  .schedule {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .time-slot {
    background: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    flex: 1 1 300px;
  }
  
  /* Footer */
  footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    nav ul li {
      display: block;
      margin: 10px 0;
    }
  }