* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-black: #1a1a1a;
  --accent-orange: #ff0040;
  --accent-brown: #2d2d2d;
  --accent-gold: #ffd700;
  --light-gray: #f8f9fa;
  --border-gray: #c7baa7;
  --medium-gray: #6c757d;
  --white: #ffffff;

  /* Gold Coast Inspired Colors */
  --ocean-blue: #0080ff;
  --sky-blue: #87ceeb;
  --sunset-orange: #ff6b47;
  --beach-sand: #f4e4bc;
  --accent2-blue: #b5eef7;
  --accent2-orange: #f0e4bf;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: var(--primary-black);
}

/* Header */
/* .header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  } */

.header {
  background: linear-gradient(135deg, #ffffff 0%, #f8ceac86 100%);
  /* border-bottom: 2px solid #e67e22; */
  /* Sharp orange line for definition */
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  height: 50px;
  width: auto;
}

/* --- Updates to Existing CSS --- */

/* * IMPORTANT CHANGE:
 * The 'nav-menu' now only contains the <ul>.
 * We need to apply the flex layout to the <ul> inside the <nav>
 */
/* --- UPDATED CSS: This block is necessary for horizontal alignment --- */
.nav-menu ul {
  /* *** THIS IS THE CRUCIAL LINE *** */
  display: flex;

  /* These ensure the list behaves like a menu */
  list-style: none;
  /* Removes bullet points */
  gap: 2rem;
  /* Spacing between links */
  padding: 0;
  margin: 0;
  align-items: center;
  /* Vertically centers the text */
}

/* This is also important to clean up list defaults */
.nav-menu li {
  list-style: none;
}

/* * The following styles for <a> and <a>:hover still work 
 * because they are children of .nav-menu.
 * We will update them to target li > a for precision.
 */
.nav-menu ul li a {
  text-decoration: none;
  color: var(--primary-black);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
  color: var(--accent-orange);
}

/* Styling for the active page link */
.nav-menu ul li a.active {
  color: var(--accent-orange);
  font-weight: bold;
  border-bottom: 2px solid var(--accent-orange);
  padding-bottom: 5px;
}

/* Optional: Ensure the active link doesn't change color on hover */
.nav-menu ul li a.active:hover {
  color: var(--accent-orange);
}

/* --- New CSS for the CTA Area --- */

/* Container for Login link and Join/Renew button */
.cta-area {
  display: flex;
  align-items: center;
  /* Vertically center the link and button */
  gap: 1.5rem;
  /* Space between the Login link and the button */
}

/* Style for the smaller 'Login' link */
.login-link {
  text-decoration: none;
  color: var(--primary-black);
  font-weight: 600;
  transition: color 0.3s ease;
}

.login-link:hover {
  color: var(--accent-orange);
}

/* Styling for the Primary CTA Button (JOIN / RENEW) */
.btn-primary {
  /* You'll likely need to define these button styles based on your design system. */
  /* Assuming var(--accent-orange) is your main action color */
  background-color: var(--accent-orange);
  color: white;
  padding: 0.75rem 1.5rem;
  /* Vertical and horizontal padding */
  border-radius: 8px;
  /* Rounded corners */
  text-decoration: none;
  /* Remove underline from the <a> tag */
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  /* Remove any default border if needed */
  cursor: pointer;
  white-space: nowrap;
  /* Keep the text on one line */
}

.btn-primary:hover {
  background-color: #d86900;
  /* A slightly darker shade of your accent color for hover */
}

/* Hero Section */
.hero {
  min-height: 100svh;                /* full viewport height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;       /* start near top */
  
  /* Default for large screens */
  padding-top: 25vh;                  
  padding-bottom: 80px;

  background:
    linear-gradient(
      135deg,
      rgba(114, 188, 253, 0.872) 41.1%,
      rgba(249, 189, 116, 0.6) 78%
    ),
    url("images/landscape.svg");
  background-size: cover;
  background-position: center top;

  position: relative;
  overflow: visible;
}

/* Media query for small screens */
@media (max-width: 768px) {
  .hero {
    padding-top: 10vh;  /* much less top space on small screens */
  }
}

.hero-content {
  max-width: 1200px;
  margin-inline: auto;
  /* horizontal centering */
  padding-inline: clamp(1rem, 4vw, 2rem);

  /* slight upward nudge on small screens */
  transform: translateY(clamp(-4vh, -2rem, 0));

  color: white;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(45deg, var(--accent-orange), var(--accent-gold));
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  border: 2px solid white;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-black);
}

/* Next Event Card */
/* .next-event {
  position: absolute;
  bottom: 50px;
  left: 55%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 400px;
  text-align: center;
  z-index: 10;
  transition: all 0.3s ease;
} */

.next-event {
  position: absolute;
  bottom: 50px;
  left: 50%; /* Center it by default */
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
  
  /* --- CHANGE THESE LINES --- */
  width: 90%;          /* Occupy 90% of the screen width on small devices */
  max-width: 450px;    /* But don't let it get wider than 450px on desktop */
  min-width: auto;     /* Remove the 400px restriction */
  /* --------------------------- */
  
  text-align: center;
  z-index: 10;
  transition: all 0.3s ease;
}



.next-event:hover {
  transform: translateX(-50%) translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Event Header */
.event-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 4px solid rgba(99, 85, 72, 0.1);
}

.event-header-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Event States */
.event-state {
  display: none;
}

.event-state.active {
  display: block;
}

/* Loading State */
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--medium-gray);
}

.loading-animation {
  display: flex;
  gap: 0.5rem;
}

.loading-animation span {
  width: 8px;
  height: 8px;
  background: var(--accent-orange);
  border-radius: 50%;
  animation: loadingPulse 1.4s ease-in-out infinite both;
}

.loading-animation span:nth-child(1) {
  animation-delay: -0.32s;
}

.loading-animation span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes loadingPulse {
  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Error State */
.error-state {
  color: var(--medium-gray);
  text-align: center;
}

.error-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.retry-btn {
  background: transparent;
  color: var(--accent-orange);
  border: 2px solid var(--accent-orange);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.retry-btn:hover {
  background: var(--accent-orange);
  color: white;
  transform: translateY(-2px);
}

/* Event Content */
.event-content {
  animation: fadeInUp 0.6s ease-out;
}

.event-date {
  /* background: linear-gradient(45deg, var(--accent2-orange), var(--accent2-blue)); */
  background: rgba(255, 215, 0, 0.1);
  border-left: 4px solid var(--accent-gold);
  color: rgb(8, 12, 90);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  display: inline-block;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.event-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--primary-black);
  line-height: 1.3;
}

.event-details {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

.event-fee {
  background: rgba(255, 215, 0, 0.1);
  color: var(--primary-black);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent-gold);
  font-size: 1rem;
  display: none;
}

.event-fee.show {
  display: block;
}

/* Button Styling */
.next-event .btn-primary {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.next-event .btn-primary:disabled {
  background: var(--medium-gray) !important;
  cursor: not-allowed;
  transform: none !important;
}

.next-event .btn-primary:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 64, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .next-event {
    min-width: 350px;
    padding: 1.8rem;
    bottom: -35px;
    left: 50%;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(2rem, 6vw, 3rem);
        padding-top: 10vh;
          /* much less top space on small screens */
  }

  .hero p {
    font-size: 1.1rem;
  }

  /* .next-event {
    min-width: 320px;
    padding: 1.5rem;
    /* bottom: -30px; */
  }

  .event-title {
    font-size: 1.3rem;
  } */

.next-event {
    /* Remove min-width entirely so 'width: 90%' takes over */
    min-width: 0; 
    padding: 1.5rem;
    bottom: 20px; /* Move it up slightly so it doesn't hit the screen edge */
  }

  .event-title {
    font-size: 1.25rem; /* Slightly smaller text for mobile */
  }

  .event-details {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  /* .next-event {
    min-width: 300px;
    padding: 1.3rem;
    bottom: -25px;
  }
	
  .event-title {
    font-size: 1.2rem;
  } */

.next-event {
    width: 95%; /* Give a bit more room on very small phones */
    padding: 1.2rem;
    bottom: 15px;
  }
  
  .event-date {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
	
  .next-event .btn-primary {
    width: 100%;
    padding: 0.7rem;
  }


}
/* Main Content */
.main-content {
  margin-top: 60px;
  padding: 4rem 0;
}

.section {
  padding: 4rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(
    45deg,
    var(--primary-black),
    var(--accent-orange)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--accent-orange), var(--accent-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-black);
}

.feature-card p {
  color: var(--medium-gray);
  line-height: 1.6;
}

/* About Section */
.about {
  background: var(--light-gray);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--medium-gray);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-orange);
  display: block;
}

.stat-label {
  color: var(--medium-gray);
  font-weight: 600;
}

/* Contact Section */
.contact {
  background: var(--primary-black);
  color: white;
}

.contact-content {
  text-align: center;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.contact-icon {
  width: 24px;
  height: 24px;
  background: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Footer */
.footer {
  background: var(--primary-black);
  color: white;
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #333;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--primary-black);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .next-event {
    min-width: 350px;
    bottom: -35px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    background-attachment: scroll;
    padding-bottom: 12em;
  }

  .hero-content {
    padding: 0 1.5rem;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 0.6em;
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5em;
  }

  .next-event {
    min-width: 320px;
    bottom: -3em;
    padding: 1.8rem;
  }

  .main-content {
    margin-top: 4em;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons {
    justify-content: flex-start;
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-bottom: 10em;
  }

  .hero h1 {
    font-size: 1.9rem;
    margin-bottom: 0.5em;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.2em;
  }

  .next-event {
    min-width: 300px;
    bottom: -2.5em;
    padding: 1.5rem;
  }

  .event-title {
    font-size: 1.3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 0.8rem 1.5rem;
  }

  .main-content {
    margin-top: 3em;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out;
}

.race-entry-section {
  padding: 6rem 0;
  min-height: calc(100vh - 80px);
  /* Fill viewport minus header height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 500px;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.entry-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 0.5rem;
}

.entry-card p {
  color: var(--medium-gray);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-black);
}

/* .form-group input[type="email"] {
             width: 100%;
             padding: 1rem;
             border: 2px solid var(--light-gray);
             border-radius: 10px;
             font-size: 1.1rem;
             transition: border-color 0.3s ease, box-shadow 0.3s ease;
             box-sizing: border-box;
         }*/

.form-group input:focus {
  border-color: var(--accent-orange);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 0, 64, 0.2);
}

/* Targets all standard text inputs, number, password, email, and textarea */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group textarea {
  /* 1. Sizing and Spacing */
  width: 100%;
  /* Makes the input stretch to the width of its container */
  padding: 1rem;
  /* Consistent padding inside the box (same as your email style) */
  box-sizing: border-box;
  /* Crucial: Ensures padding and border are included *inside* the element's width */
  height: auto;
  /* Allow height to adjust based on padding and font size */

  /* 2. Typography */
  font-size: 1.1rem;
  /* Same font size as your email style */
  line-height: 1.5;
  font-family: inherit;

  /* 3. Appearance (Adjusted to match your email style) */
  border: 2px solid var(--border-gray);
  /* Subtle gray border (using your variable) */
  border-radius: 10px;
  /* Rounded corners (same as your email style) */
  background-color: #fff;

  /* 4. Smooth Transitions */
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  /* Smooth transition (same as your email style) */
}

.entry-card .btn-primary {
  width: 100%;
  padding: 1.1rem;
  margin-top: 1rem;
}

/* Reusing loading/error states from home page CSS */
#member-info-display {
  display: none;
  text-align: left;
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--beach-sand);
  background-color: var(--accent2-orange);
}

.member-detail {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.member-detail strong {
  font-weight: 700;
  color: var(--accent-orange);
  min-width: 120px;
  display: inline-block;
}

.status-active {
  color: #28a745;
  font-weight: 700;
}

.status-expired {
  color: #ffc107;
  font-weight: 700;
}

.status-trial {
  color: #007bff;
  font-weight: 700;
}

/* Styles for the new transaction result cards */
.status-box {
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 10px;
  animation: fadeIn 0.5s ease-out forwards;
}

.status-box h3 {
  margin-top: 0;
}

.status-box.success {
  border: 2px solid #28a745;
  /* Success Green */
  background-color: #e6ffe6;
  color: #0b4e1e;
}

.status-box.error {
  border: 2px solid #dc3545;
  /* Error Red */
  background-color: #f8d7da;
  color: #721c24;
}

.btn-primary.reset-btn {
  width: auto;
  margin-top: 15px;
  padding: 10px 20px;
}

/* Ensure the 'Continue' button looks good if credit button is present */
#info-buttons .btn-primary {
  width: 100%;
  /* Ensure full width consistency */
}

/* Animation to reuse existing fade-in styles */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Style for the race details banner */
#race-details-display {
  background-color: #fff8e1;
  /* Light yellow/cream background */
  border-left: 5px solid var(--accent-orange);
  padding: 10px 15px;
  margin-bottom: 20px;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #333;
}

#race-details-display strong {
  color: var(--primary-color);
}

/* Table Styles */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.info-table th,
.info-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.info-table th {
  background: linear-gradient(135deg, #e67e22 0%, #c5c4f7 100%);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-highlight {
  color: #e67e22;
  font-weight: bold;
}

/* Governance Callout Box */
.governance-box {
  background-color: #fff9f2;
  border-left: 5px solid #e67e22;
  padding: 30px;
  margin: 40px 0;
  border-radius: 0 8px 8px 0;
}

.download-btn-sm {
  white-space: nowrap;
  border: 1px solid #e67e22;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  text-decoration: none;
  color: #333;
}

.download-btn-sm:hover {
  background-color: #e67e22;
  color: #fff;
}

.notice {
  background: #355c7d;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #c06c84, #6c5b7b, #355c7d);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #c06c84, #6c5b7b, #355c7d);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  /* background: linear-gradient(135deg, #0575e6 0%, #021b79 100%); */
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  /* background: #7b7878; */
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
  text-align: center;
}

.prep-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-top: 5px solid #e67e22;
}

.prep-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.prep-list li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-align: left;
}

.prep-list li:last-child {
  border-bottom: none;
}

.check-icon {
  color: #e67e22;
  font-weight: bold;
  font-size: 1.2rem;
}

.external-notice {
  background-color: #fff9f2;
  padding: 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 30px;
}

.login-notice-card {
  max-width: 500px;
  margin: 60px auto;
  background: #fff;
  padding: 50px 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-top: 5px solid #e67e22;
}

.lock-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: inline-block;
}

.coming-soon-badge {
  display: inline-block;
  background-color: #fff9f2;
  color: #e67e22;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Specific contact form spacing */
.contact-container {
  /* padding-top: 140px; */
  max-width: 600px;
  margin: 140px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  /* Crucial for width alignment */
}

#contact-status {
  margin-bottom: 20px;
}
