body {
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 20px;
  background-color: #f4f4f4;
}

/* Header styles */
h1 {
    color: #00A86B; /* Main color for the header */
}

/* Logo styles */
#logo-container {
    margin: 20px 0; /* Add some margin above and below the logo */
}

#company-logo {
    max-width: 150px; /* Adjust the maximum width of the logo */
    height: auto; /* Maintain aspect ratio */
}

/* Media list styles */
#promoSection {
    margin: 20px auto;
	height: auto;
    background-color: #e0f2e0; /* Light green background for the media list */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}


/* Optional: fade-in animation for redirect overlay */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.redirect-overlay {
  animation: fadeIn 0.5s ease-in-out;
}


#promoSection iframe{
   
    margin: 20px 0;
    
}

button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #0078D7;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #005fa3;
}

#acceptBtn, #browseBtn {
  display: none;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
}

.terms-container {
  margin-top: 20px;
  font-size: 14px;
}

.terms-container input {
  margin-right: 8px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 5px;
  width: 90%;
  max-width: 600px;
  text-align: left;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: black;
}

#warningMsg {
  color: red;
  margin-top: 10px;
  display: none;
}

/* Footer styles */
footer {
    margin-top: 20px;
    font-size: 0.9em;
    color: #555; /* Dark gray for footer text */
}
