:root {
      --primary-color: #ED9455;
      --bg-light: #f8f8f8;
      --text-dark: #333;
      --card-bg: #ffffff;
      --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    
    body {
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: var(--bg-light);
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    .header-placeholder {
      background: linear-gradient(135deg, #f0f0f0, #d9d9d9);
      color: var(--primary-color);
      text-align: center;
      padding: 20px;
      font-size: 2em;
      font-weight: 700;
      position: relative;
      top: 0;
      z-index: 1000;
      border-bottom: 2px solid #ccc;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      letter-spacing: 1px;
    }

    .main-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 40px 20px;
    }

    .container {
      background: var(--card-bg);
      border-radius: 16px;
      box-shadow: var(--box-shadow);
      max-width: 400px;
      width: 100%;
      padding: 30px;
      transition: transform 0.3s;
    }

    .container:hover {
      transform: translateY(-5px);
    }

    h1 {
      font-size: 1.5rem;
      color: var(--text-dark);
      text-align: center;
      margin-bottom: 20px;
      
      padding-bottom: 10px;
    }

    .info {
      color: #444;
      font-size: 16px;
      line-height: 1.6;
    }

    .info strong {
      color: #000;
    }

    .view-btn {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  margin: 20px auto 0;
  transition: background 0.3s;
}


    .view-btn:hover {
      background: #e07b3f;
    }

    .modal {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.9);
      justify-content: center;
      align-items: center;
      z-index: 2000;
    }

    .modal-content {
      position: relative;
      max-width: 100vw;
      max-height: 100vh;
      width: 100vw;
      height: 100vh;
      overflow: hidden;
    }

    .modal-content iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .close-btn {
      position: fixed ;
      top: 10px;
      right: 20px;
      color: #0a0a0a;
      font-size: 28px;
      background: rgb(253, 252, 252);
      border-radius: 50%;
      padding: 5px 12px;
      cursor: pointer;
      z-index: 1001;
      border-radius: 50%;
    }

    footer {
      background: #333;
      color: white;
      text-align: center;
      padding: 20px;
      margin-top: auto;
    }

    @media (max-width: 768px) {
      .container {
        max-width: 90%;
      }

      .header-placeholder {
        font-size: 1.5em;
      }
    }