

  
  /* TOP TABS */
  .tabs-container {
    display: flex;
    width: 100%;
    gap: 15px;
   
    flex-wrap: wrap;
  }
  
  .tab-btn {
    padding: 12px 20px;
    border: 2px solid #663636;
    background: #f8fbff;
    cursor: pointer;
    border-radius: 25px;
    font-size: 15px;
    transition: 0.3s;
  }
  
  .tab-btn:hover {
    background: #e1b3b3;
  }
  
  .tab-btn.active {
    background: #a0522d;
    color: white;
    border-color: #a0522d;
  }
  
  /* IMAGE + CONTENT LAYOUT */
  .content-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
  }
  
  /* LEFT IMAGE */
  .content-image img {
    width: 420px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }
  
  /* RIGHT TEXT */
  .content-text {
    flex: 1;
  }
  
  /* TAB CONTENT */
  .tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
  }
  
  .tab-content.active {
    display: block;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* RESPONSIVE */
  @media screen and (max-width: 768px) {
    .content-layout {
      flex-direction: column;
    }
    
    .content-image img {
      width: 100%;
    }
  }
  