@import url("https://fonts.googleapis.com/css?family=PT+Sans:300,400,700|Open+Sans:300,400,700");

      :root {
        --font: PT Sans;
        --alt-font: Open Sans;
        --accent-color: #009cde;
        --secondary-color: #3f9c35;
        --link-color: #009cde;
        --accent-highlight-color: #00425f;
        --accent-highlight-background-color: #c4eeff;
        --accent-tinted-color-70: #b3e1f5;
        --accent-tinted-color-80: #ccebf8;
        --accent-tinted-color-90: #e6f5fc;
        --accent-contrast-color: #fff;
        --accent-contrast-tinted-background-color: #b3b3b3;
        --accent-hover-color: #12b9ff;
        --secondary-hover-color: #50c044;
        --secondary-contrast-color: #fff;
        --link-hover-color: #45c8ff;
      }
      


/* =========================================
   RSM ACADEMY SITEWIDE HEADER
========================================= */

.academy-header{
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: rgba(0, 21, 61, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.academy-header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;

  width: 100%;
  max-width: none;
  padding: 1rem 4vw;
}

.academy-header__brand{
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
}

.academy-header__brand-text{
  font-family: 'Prelo', 'Instrument Serif', Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

.academy-header__nav{
  display: flex;
  align-items: center;
  gap: 2rem;
}

.academy-header__link{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem; /* bigger nav text */
  padding: .35rem .2rem;
  border-radius: 8px;
  transition: all .2s ease;
}

.academy-header__link:hover{
  color: #98D7F1;
}

.academy-header__actions{
  display: flex;
  align-items: center;
  gap: .9rem;
}

.academy-header__login{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.02rem;
  padding: .65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  transition: all .2s ease;
}

.academy-header__login:hover{
  background: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}

.academy-header__cta{
  background: #E87722;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.02rem;
  padding: .7rem 1.15rem;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(232,119,34,0.45);
  transition: all .2s ease;
}

.academy-header__cta:hover{
  background: #E40046;
  transform: translateY(-1px);
}

.academy-header__menu{
  display: none;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 10px;
  padding: .55rem .75rem;
  font-size: 1.1rem;
}

/* Responsive: collapse nav */
@media (max-width: 900px){
  .academy-header__nav{
    display: none;
  }
  .academy-header__menu{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}


/*----------------------------------------*/
/* UNDER CONSTRUCTION PAGE - pages/under-construction */
/*----------------------------------------*/
.rsm-construction-wrapper {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
  background: linear-gradient(135deg, #00153D 0%, #001a4d 50%, #002060 100%);
  padding: 60px 24px;
  text-align: center;
  position: relative;
}



.rsm-construction-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Logo */
.rsm-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 50px;
}

.rsm-logo-box {
  background: transparent;
  border: 2px solid #009CDE;
  color: #ffffff;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 18px;
  border-radius: 6px;
}

.rsm-logo-text {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.rsm-logo-text em {
  font-style: italic;
  color: #009CDE;
}

/* Badge */
.rsm-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.rsm-badge-dot {
  width: 10px;
  height: 10px;
  background: #E87722;
  border-radius: 50%;
  animation: rsm-pulse 2s ease-in-out infinite;
}

@keyframes rsm-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* Title */
.rsm-construction-title {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.rsm-construction-title em {
  font-style: italic;
  color: #66C3EB;
}

/* Subtitle */
.rsm-construction-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 50px;
}

/* Progress Card */
.rsm-progress-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 40px 40px;
  max-width: 520px;
  margin: 0 auto 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.rsm-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.rsm-progress-label {
  font-size: 13px;
  font-weight: 600;
  color: #00153D;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rsm-progress-value {
  font-size: 24px;
  font-weight: 700;
  color: #009CDE;
}

.rsm-progress-bar {
  width: 100%;
  height: 12px;
  background: #CCEBF8;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 36px;
}

.rsm-progress-fill {
  height: 100%;
  width: 67%;
  background: linear-gradient(90deg, #009CDE 0%, #34A798 100%);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}

.rsm-progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
  animation: rsm-shimmer 2s infinite;
}

@keyframes rsm-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Features inside card */
.rsm-features {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.rsm-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.rsm-feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #E8F7FC 0%, #F0F9FF 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.rsm-feature-label {
  font-size: 11px;
  font-weight: 600;
  color: #63666A;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* CTA Section */
.rsm-cta-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.rsm-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.rsm-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #00153D;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
}

.rsm-cta-button:hover {
  background: #F8FAFC;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.rsm-cta-button svg {
  width: 18px;
  height: 18px;
}

.rsm-secondary-link {
  color: #66C3EB;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.rsm-secondary-link:hover {
  color: #ffffff;
}

/* Footer */
.rsm-footer {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* Mobile responsive */
@media (max-width: 600px) {
  .rsm-construction-wrapper {
    padding: 40px 20px;
  }
  
  .rsm-construction-title {
    font-size: 32px;
  }
  
  .rsm-construction-subtitle {
    font-size: 16px;
  }
  
  .rsm-progress-card {
    padding: 24px 20px 32px;
  }
  
  .rsm-features {
    gap: 24px;
  }
  
  .rsm-feature-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  
  .rsm-logo-text {
    font-size: 18px;
  }
}

/* ------------------------- */
/* SITEFOOTER */
/* ------------------------- */
.footer.footer-home-test{
  background: linear-gradient(135deg, #061A3A 0%, #0B2A5B 45%, #0A2D66 100%);
  color: rgba(255,255,255,.85);
  padding: 64px 0 28px;
}

.footer.footer-home-test .container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  background: transparent !important;
}

.footer.footer-home-test .footer-grid{
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer.footer-home-test .footer-logo{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer.footer-home-test .footer-logo-icon{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
  background: rgba(255,255,255,.10);
  color: #fff;
}

.footer.footer-home-test .footer-logo-text{
  font-weight: 700;
  color: #fff;
}

.footer.footer-home-test .footer-description{
  margin: 0 0 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.70);
}

.footer.footer-home-test .footer-social{
  display: flex;
  gap: 10px;
}

.footer.footer-home-test .footer-social a{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
}

.footer.footer-home-test .footer-social a:hover{
  background: rgba(255,255,255,.14);
  color: #fff;
}

.footer.footer-home-test .footer-heading{
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
}

.footer.footer-home-test .footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer.footer-home-test .footer-links a{
  color: rgba(255,255,255,.70);
  text-decoration: none;
}

.footer.footer-home-test .footer-links a:hover{
  color: #fff;
}

.footer.footer-home-test .footer-bottom{
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.footer.footer-home-test .footer-legal{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer.footer-home-test .footer-legal a{
  color: rgba(255,255,255,.65);
  text-decoration: none;
}

.footer.footer-home-test .footer-legal a:hover{
  color: #fff;
}

/* responsive */
@media (max-width: 980px){
  .footer.footer-home-test .footer-grid{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px){
  .footer.footer-home-test .footer-grid{
    grid-template-columns: 1fr;
  }
}

/* Hide Thought Industries footer credit globally */
.footer__company__info {
  display: none !important;
}

/* Remove top border above custom footer */
.footer__inner {
  border-top: none !important;
}

/* ------------------------- */
/* SITE FOOTER END */
/* ------------------------- */

/* ------------------------- */
/* EVENTS PAGE */
/* ------------------------- */
@font-face {
    font-family: 'Prelo';
    src: url('data:font/woff2;base64,') format('woff2');
    font-weight: 300 700;
    font-display: swap;
}.rsm-workshops *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}.rsm-workshops{
    --midnight-blue: rgb(0, 21, 61);
    --rsm-blue: rgb(0, 156, 222);
    --rsm-green: rgb(63, 156, 53);
    --rsm-mid-grey: rgb(136, 139, 141);
    --rsm-dark-grey: rgb(99, 102, 106);
    --white: rgb(255, 255, 255);
    --blue-light: rgb(204, 235, 248);
    --green-light: rgb(216, 235, 214);
}.rsm-workshops{
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--midnight-blue);
    line-height: 1.6;
    overflow-x: hidden;
}.rsm-workshops h1, .rsm-workshops h2, .rsm-workshops h3, .rsm-workshops h4, .rsm-workshops h5, .rsm-workshops h6{
    font-family: 'Prelo', 'DM Sans', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}.rsm-workshops /* Header */
.header{
    background: var(--midnight-blue);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}.rsm-workshops .nav-container{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}.rsm-workshops .logo{
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    font-family: 'Prelo', sans-serif;
}.rsm-workshops .logo span{
    color: var(--rsm-blue);
}.rsm-workshops .nav-links{
    display: flex;
    gap: 2rem;
    list-style: none;
}.rsm-workshops .nav-links a{
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}.rsm-workshops .nav-links a:hover{
    color: var(--rsm-blue);
}.rsm-workshops /* Hero Section */
.hero{
    background: linear-gradient(135deg, var(--midnight-blue) 0%, rgb(0, 50, 100) 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}.rsm-workshops .hero::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 156, 222, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(63, 156, 53, 0.1) 0%, transparent 50%);
}.rsm-workshops .hero-content{
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}.rsm-workshops .hero h1{
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}.rsm-workshops .hero p{
    font-size: 1.3rem;
    color: var(--blue-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}.rsm-workshops .hero-badge{
    display: inline-block;
    background: rgba(63, 156, 53, 0.2);
    color: var(--rsm-green);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 2px solid var(--rsm-green);
}.rsm-workshops /* Main Content */
.container{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}.rsm-workshops .section{
    padding: 5rem 0;
}.rsm-workshops .section-header{
    text-align: center;
    margin-bottom: 4rem;
}.rsm-workshops .section-title{
    font-size: 2.5rem;
    color: var(--midnight-blue);
    margin-bottom: 1rem;
}.rsm-workshops .section-subtitle{
    font-size: 1.2rem;
    color: var(--rsm-mid-grey);
    max-width: 700px;
    margin: 0 auto;
}.rsm-workshops /* Workshop Grid */
.workshops-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}.rsm-workshops .workshop-card{
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}.rsm-workshops .workshop-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rsm-blue), var(--rsm-green));
}.rsm-workshops .workshop-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--rsm-blue);
}.rsm-workshops .workshop-tag{
    display: inline-block;
    background: var(--blue-light);
    color: var(--rsm-blue);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}.rsm-workshops .workshop-tag.advanced{
    background: var(--green-light);
    color: var(--rsm-green);
}.rsm-workshops .workshop-title{
    font-size: 1.5rem;
    color: var(--midnight-blue);
    margin-bottom: 1rem;
}.rsm-workshops .workshop-description{
    color: var(--rsm-dark-grey);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}.rsm-workshops .workshop-details{
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}.rsm-workshops .detail-item{
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--rsm-dark-grey);
    font-size: 0.95rem;
}.rsm-workshops .detail-icon{
    width: 20px;
    height: 20px;
    color: var(--rsm-blue);
}.rsm-workshops .workshop-spots{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}.rsm-workshops .spots-badge{
    background: rgba(63, 156, 53, 0.1);
    color: var(--rsm-green);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}.rsm-workshops .spots-badge.limited{
    background: rgba(255, 165, 0, 0.1);
    color: rgb(232, 119, 34);
}.rsm-workshops .register-btn{
    width: 100%;
    background: var(--rsm-blue);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}.rsm-workshops .register-btn:hover{
    background: var(--midnight-blue);
    transform: translateY(-2px);
}.rsm-workshops /* Registration Form Section */
.registration-section{
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--white) 100%);
}.rsm-workshops .form-container{
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}.rsm-workshops .form-group{
    margin-bottom: 1.5rem;
}.rsm-workshops .form-group label{
    display: block;
    margin-bottom: 0.5rem;
    color: var(--midnight-blue);
    font-weight: 600;
}.rsm-workshops .form-group input, .rsm-workshops .form-group select, .rsm-workshops .form-group textarea{
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.3s;
}.rsm-workshops .form-group input:focus, .rsm-workshops .form-group select:focus, .rsm-workshops .form-group textarea:focus{
    outline: none;
    border-color: var(--rsm-blue);
}.rsm-workshops .form-group textarea{
    resize: vertical;
    min-height: 100px;
}.rsm-workshops .form-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}.rsm-workshops .submit-btn{
    width: 100%;
    background: linear-gradient(135deg, var(--rsm-blue), var(--rsm-green));
    color: var(--white);
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}.rsm-workshops .submit-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 156, 222, 0.3);
}.rsm-workshops /* Benefits Section */
.benefits-section{
    background: var(--midnight-blue);
    color: var(--white);
}.rsm-workshops .benefits-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}.rsm-workshops .benefit-card{
    text-align: center;
    padding: 2rem;
}.rsm-workshops .benefit-icon{
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--rsm-blue), var(--rsm-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}.rsm-workshops .benefit-title{
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}.rsm-workshops .benefit-description{
    color: var(--blue-light);
    line-height: 1.7;
}.rsm-workshops /* Footer */
.footer{
    background: var(--midnight-blue);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: 0;
}.rsm-workshops .footer-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}.rsm-workshops .footer-section h3{
    color: var(--rsm-blue);
    margin-bottom: 1rem;
}.rsm-workshops .footer-section p, .rsm-workshops .footer-section a{
    color: var(--blue-light);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}.rsm-workshops .footer-section a:hover{
    color: var(--white);
}.rsm-workshops .footer-bottom{
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--blue-light);
}.rsm-workshops /* Success Message */
.success-message{
    display: none;
    background: var(--rsm-green);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}.rsm-workshops .success-message.show{
    display: block;
}.rsm-workshops 

/* Responsive */

    .hero p {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .workshops-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

/* FORCE Benefits section to render as a full-width dark band (override host styles) */
.rsm-workshops .benefits-section {
  background: var(--midnight-blue) !important;
  color: var(--white) !important;
  width: 100%;
}

/* If the host site gives .container a white background, kill it ONLY here */
.rsm-workshops .benefits-section .container {
  background: transparent !important;
}

/* Ensure text is readable even if something else overrides */
.rsm-workshops .benefits-section .section-title,
.rsm-workshops .benefits-section .benefit-title {
  color: var(--white) !important;
}

.rsm-workshops .benefits-section .section-subtitle,
.rsm-workshops .benefits-section .benefit-description {
  color: var(--blue-light) !important;
}

/* Contact / Questions Section */
.rsm-workshops .contact-section {
  background: linear-gradient(135deg, var(--white) 0%, var(--blue-light) 100%);
}

.rsm-workshops .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.rsm-workshops .contact-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.rsm-workshops .contact-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--midnight-blue);
}

/* Contact Info */
.rsm-workshops .contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.rsm-workshops .contact-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.rsm-workshops .contact-item p {
  margin: 0.25rem 0 0;
  color: var(--rsm-dark-grey);
}

.rsm-workshops .contact-item a {
  color: var(--rsm-blue);
  text-decoration: none;
  font-weight: 600;
}

.rsm-workshops .contact-item a:hover {
  text-decoration: underline;
}

/* Contact Form */
.rsm-workshops .contact-form .form-group {
  margin-bottom: 1.5rem;
}

.rsm-workshops .contact-form textarea {
  min-height: 120px;
}

/* Responsive */
@media (max-width: 768px) {
  .rsm-workshops .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact / Questions Section – layout adjustments */
.rsm-workshops .contact-section {
  background: var(--white); /* full white background */
}

/* Narrow contact info, widen form */
.rsm-workshops .contact-grid {
  grid-template-columns: 0.8fr 1.2fr;
}

/* Optional: visually distinguish cards slightly */
.rsm-workshops .contact-card {
  background: var(--white);
}

/* Keep spacing consistent on smaller screens */
@media (max-width: 768px) {
  .rsm-workshops .contact-grid {
    grid-template-columns: 1fr;
  }
}


