.policy {
    margin-top: 80px;
    padding-bottom: 20px;
    position: relative;
}

.policy-container {
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--container);
    border: 2px dotted var(--border);
    border-radius: 20px;
    box-sizing: border-box;
}

.policy-container h3 {
    margin-top: 0;
    margin-bottom: 10px; 
    text-align: left;
}
 
.policy-container p {
    margin-top: 0;
    margin-bottom: 12px; 
}  

  .button {
    width: 100%;
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px;
    background-color: #902EEB;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .button:hover {
    background-color: #63C328;
    color: #000000; 
  }
  
.privacy-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-header {
    margin: 20px auto;
    margin-bottom: 20px;
}

.info-container {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.info-dropdown {
    width: 100%;
}

.info-dropdown-toggle {
    width: 100%;
    background: var(--container);
    color: var(--p-color);
    border: none;
    padding: 12px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px; 
    cursor: pointer;
    border-radius: 12px; 
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: background 0.3s;
    outline: none;
}

.info-dropdown-toggle img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.info-dropdown-title {
    text-align: left;
}

.info-dropdown-icon {
    position: absolute;
    font-size: 14px;
    right: 20px;
    color: #63C328
}

.info-dropdown-content {
    display: none;
    background: var(--container);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 5px;
}

.info-dropdown-content p {
    margin-bottom: 8px;
    color: var(--p);
}

.info-dropdown-content ul {
    padding-left: 20px;
}

.info-dropdown-content ul li {
    margin-bottom: 6px;
    line-height: 1.4;
    color: var(--p);
}

.show {
    display: block;
}

.privacy-video-new{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.privacy-video-new video {
    max-width: 90%;
    height: auto;
    aspect-ratio: 16 / 9;
}