.main-content {
    padding-top: 140px;
    padding-bottom: 60px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  .services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  .service {
    background: #fff8f0;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .service:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  }
  .service img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  .service h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .service p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #5a4431;
  }
  .service a {
    display: inline-block;
    margin-top: 10px;
    background-color: #3a2d1a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
  }
  .service a.login-required {
    background-color: #AA7940;
  }