/* Container styling */
.ticket-container {
  background-color: #121212;
  color: #ffffff;
  padding: 60px 40px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
}

.ticket-content {
  display: flex;
  max-width: 1100px;
  width: 100%;
  gap: 50px;
  align-items: center;
}

/* Typography */
.ticket-info {
  flex: 1;
}

.ticket-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.1;
}

/* Detail Rows */
.ticket-details {
  margin-bottom: 40px;
}

.ticket-detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  color: #e0e0e0;
}

.ticket-icon {
  color: #ff4d6d; /* Reddish accent from your screenshot */
  margin-right: 15px;
  width: 20px;
  text-align: center;
}

/* Button */
.ticket-register-btn {
  background-color: #ff526c;
  color: white;
  border: none;
  padding: 15px 35px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.ticket-register-btn:hover {
  background-color: #e6425a;
}

/* Image section */
.ticket-image-wrapper {
  flex: 1;
}

.ticket-main-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ticket-content {
    flex-direction: column;
    text-align: center;
  }
  .ticket-detail-item {
    justify-content: center;
  }
}







/* ======================= */
/* Container styling */
.info-sec-wrapper {
  background-color: #121212; /* Dark background matches UI */
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.info-sec-container {
  position: relative;
  max-width: 1000px;
  width: 100%;
  border: 1px solid #ff526c; /* Thin red border from screenshot */
  padding: 40px;
  margin-top: 20px;
}

/* Red Header Tab */
.info-sec-tab {
  position: absolute;
  top: -35px;
  left: -1px; /* Aligns with the border */
  background-color: #ff526c;
  color: #121212; /* Dark text on red tab */
  padding: 8px 20px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Flex layout for image and text */
.info-sec-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.info-sec-image {
  flex: 1;
  min-width: 350px;
}

.info-sec-image img {
  width: 100%;
  height: auto;
  display: block;
}

.info-sec-text {
  flex: 1.2;
}

.info-sec-text p {
  color: #cccccc;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 20px;
}

.info-sec-text p:last-child {
  margin-bottom: 0;
}

/* Responsive view */
@media (max-width: 850px) {
  .info-sec-content {
    flex-direction: column;
  }
  
  .info-sec-image {
    min-width: 100%;
  }
  
  .info-sec-container {
    padding: 30px 20px;
  }
}