* {
    box-sizing: border-box;
}
body {
    background: #ffffff;
    background: linear-gradient(to bottom, #ffffff 0%, #e1e8ed 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e1e8ed',GradientType=0 );
    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.wrapper-1 {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}
.wrapper-2 {
    padding: 30px;
    text-align: center;
}
h1 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 4em;
    letter-spacing: 3px;
    color: #81f900;
    margin: 0;
    margin-bottom: 20px;
}
.wrapper-2 p {
    margin: 0;
    font-size: 1.3em;
    color: #aaa;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: 1px;
}
.go-home {
    background: #81f900;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 12px;
    padding: 14px 42px;
    margin-top: 42px;
    margin-right: 12px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    visibility: visible;
    animation-delay: 2.3s;
    animation-name: fadeInUp;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
}
.go-home:hover {
    background: transparent;
    border-color: #81f900;
}
a:hover .go-home {
    color: #81f900;
}
.go-home a {
    text-decoration: none;
    color: #fff;
}

.footer-like {
    margin-top: auto;
    background: #d7e6fe;
    padding: 6px;
    text-align: center;
}
.footer-like p {
    margin: 0;
    padding: 4px;
    color: #ffc107;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: 1px;
}
.footer-like p a {
    text-decoration: none;
    color: #ffc107;
    font-weight: 600;
}

/* Thanks Page Specific Styles */
.thank-you-content {
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  margin-bottom: 30px;
}

.success-icon .material-icons {
  font-size: 80px;
  color: var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.thank-you-actions {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.thank-you-actions .btn {
  min-width: 200px;
}

/* Enhanced Responsive Design for Thanks Page */

/* Large Devices (1200px and up) */
@media (min-width: 1200px) {
  .success-icon .material-icons {
    font-size: 100px;
  }
  
  .thank-you-actions .btn {
    min-width: 220px;
    padding: 15px 40px;
  }
}

/* Medium Devices (992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .success-icon .material-icons {
    font-size: 90px;
  }
  
  .thank-you-actions .btn {
    min-width: 200px;
  }
}

/* Small Devices (768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .success-icon .material-icons {
    font-size: 80px;
  }
  
  .thank-you-actions {
    gap: 15px;
  }
  
  .thank-you-actions .btn {
    min-width: 180px;
  }
}

/* Extra Small Devices (576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .success-icon .material-icons {
    font-size: 70px;
  }
  
  .thank-you-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .thank-you-actions .btn {
    width: 100%;
    max-width: 300px;
    min-width: auto;
  }
}

/* Mobile Devices (up to 575.98px) */
@media (max-width: 575.98px) {
  .thank-you-content {
    padding: 30px 0;
  }
  
  .success-icon {
    margin-bottom: 25px;
  }
  
  .success-icon .material-icons {
    font-size: 60px;
  }
  
  .thank-you-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
  }
  
  .thank-you-actions .btn {
    width: 100%;
    max-width: 280px;
    min-width: auto;
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* Very Small Devices (up to 375px) */
@media (max-width: 375px) {
  .thank-you-content {
    padding: 25px 0;
  }
  
  .success-icon .material-icons {
    font-size: 50px;
  }
  
  .thank-you-actions .btn {
    max-width: 250px;
    padding: 10px 15px;
    font-size: 13px;
  }
}

/* Landscape Mobile */
@media (max-width: 767.98px) and (orientation: landscape) {
  .thank-you-content {
    padding: 20px 0;
  }
  
  .success-icon .material-icons {
    font-size: 50px;
  }
  
  .thank-you-actions {
    margin-top: 20px;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .success-icon .material-icons {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Print Styles */
@media print {
  .thank-you-actions {
    display: none;
  }
  
  .success-icon .material-icons {
    animation: none;
    color: black;
  }
  
  .thank-you-content {
    padding: 20px 0;
  }
}
