main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 5px;
}

h1 {
    margin-top: 20px;
    font-size: clamp(20px, 2.5vw, 32px);
}

h2 {
    font-size: clamp(16px, 2vw, 24px);
}

p {
    font-size: clamp(14px, 1.5vw, 18px);
}

.slider-container {
    max-width: 2400px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 10px;
}

.slides {
    display: flex;
    flex-direction: row;
    gap: 15px;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
}

.slide {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.slide img {
    border-radius: 12px;
    margin-top: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    height: auto;
    display: block;
}
.accordion-container {margin: 0 auto;width: 90%;max-width: 2400px;}

.accordion {
    background-color: #151540;
    color: white;
    cursor: pointer;
    padding: 10px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    border: none;
    outline: none;
    font-size: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.4s ease;
    border-radius: 10px;
    justify-content: center;
    position: relative;
    margin-top: 3px;

}

.accordion::after {
    content: '\002B';
    color: white;
    right: 20px;
    position: absolute;
}

.accordion.active::after {
    content: "\2212";
    color: white;
}

.panel {
    border-radius: 10px;
    background-color: #0c0c30;
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    width: 100%;
    margin: 0 auto;
}

.panel.open {
    max-height: 500px;
    opacity: 1;
}

.panel img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 350px));
    margin-top: 3px;
    margin-bottom: 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.buttons a {
    color: #ffffff;
    text-decoration: none;
    background-color: #151540;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    transition: 0.1s linear;
    font-size: clamp(16px, 1.2vw, 18px);
    padding: 0 20px;
}

.buttons a:hover {
    box-shadow:
        0 0 0 4px #3c82f8;
}

.buttons a:last-child:nth-child(odd) {
    grid-column: 1 / 3;
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9998;
  animation: fadeIn 0.3s ease;
}

#confirm-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 30px;
  max-width: 550px;
  width: 90%;
  max-height: 90vh; 
  overflow-y: auto; 
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
  z-index: 9999;
  text-align: center;
  font-family: sans-serif;
  color: #222;
  animation: slideIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

#confirm-popup h2 {
  margin-top: 0;
  color: #fff;
  font-size: 24px;
  margin-bottom: 15px;
}

#confirm-popup p {
  font-size: 15px;
  line-height: 1.6;
  margin: 15px 0;
  color: #ccc;
}

.popup-links {
  margin: 20px 0;
}

.popup-links a {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  background: #ff0000;
  color: #fff;
  text-decoration: none;
  padding: 12px 15px;
  border-radius: 10px;
  margin: 8px 0;
  font-weight: bold;
  transition: background 0.2s ease;
}

.popup-links a:hover {
  background: #cc0000;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  margin: 20px 0;
  text-align: left;
  padding: 15px;
  background: #252525;
  border-radius: 10px;
}

.checkbox-container input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-container label {
  font-size: 14px;
  color: #ddd;
  cursor: pointer;
  flex: 1;
}

.popup-buttons {
  margin-top: 25px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.popup-buttons button {
  padding: 12px 30px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.2s ease;
}

.btn-proceed {
  background: #4CAF50;
  color: #fff;
}

.btn-proceed:hover {
  background: #45a049;
  transform: translateY(-2px);
}

.btn-proceed:disabled {
  background: #555;
  cursor: not-allowed;
  transform: none;
}

.btn-cancel {
  background: #555;
  color: #fff;
}

.btn-cancel:hover {
  background: #666;
}

@media (max-width: 600px) {
  #confirm-popup {
    padding: 20px;
    max-width: 95%;
  }
  
  .popup-links a {
    font-size: 14px;
    padding: 10px;
  }
  
  .popup-buttons {
    flex-direction: column;
  }
  
  .popup-buttons button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .slider-container {
    width: 95%;
    border-radius: 20px;
  }

  .accordion-container {
    width: 95%;
  }
    
  .buttons {
    grid-template-columns: 1fr;
    width: 90%;
    gap: 10px;
  }
    
  .buttons a {
    height: 50px;
    font-size: 14px;
  }
    
  .buttons a:last-child:nth-child(odd) {
    grid-column: 1;
  }
    
  .accordion {
    font-size: 18px;
  }
}
#button-img{width: 25px;margin-right: 10px;}