* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    position: relative;
  }
  
  body {
    direction: rtl;
    text-align: right;
    height: 100svh;
    width: 100svw;
    max-height: 100svh;
    max-width: 100svw;
  }

  .cont {
    background-color: #fae6b3;
    width: 90%;
    max-width: 400px;
    margin: 50px auto;
    margin-top: 150px;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}
.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    margin-top: -60px;
    background: white;
    
}
h2 {
    color: #333;
    font-size: 22px;
}
p {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}
.details {
    text-align: right;
    margin-top: 20px;
    padding: 10px;
    border-top: 1px solid #ddd;
}
.details p {
    margin: 10px 0;
    display: flex;
    align-items: center;
}
.details span {
    font-weight: bold;
    color: #000;
    margin-right: 5px;
}
.book-btn {
    display: block;
    width: 100%;
    background: rgb(184, 151, 91);
    color: white;
    padding: 12px;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: bold;
}
.book-btn:hover {
    background:  rgb(129, 106, 64);
}