
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container {
  width: 100%;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(10px, 3vw, 20px);
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
  display: flex;
  gap: clamp(15px, 4vw, 80px);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  flex: 0 1 auto;
  min-width: clamp(60px, 12vw, 120px);
  max-width: clamp(80px, 15vw, 150px);
}

.logo:hover {
  transform: translateY(-3px);
}

.logo-circle {
  width: clamp(50px, 10vw, 90px);
  height: clamp(50px, 10vw, 90px);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(5px, 2vw, 12px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-label {
  font-size: clamp(8px, 1.8vw, 12px);
  font-weight: 600;
  color: #333;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.2;
  padding: 0 clamp(5px, 1vw, 10px);
}

/* Mobile navbar adjustments */
@media (max-width: 480px) {
  .navbar {
      padding: 8px 5px;
  }
  .logo-container {
      gap: clamp(8px, 3vw, 20px);
      flex-direction: row; /* Keep horizontal layout */
      flex-wrap: wrap; /* Allow wrapping if needed */
      justify-content: center;
  }
  .logo {
      min-width: clamp(45px, 15vw, 80px);
  }
  .logo-circle {
      width: clamp(40px, 12vw, 70px);
      height: clamp(40px, 12vw, 70px);
  }
  .logo-label {
      font-size: clamp(7px, 2vw, 10px);
  }
}



.full-img {
position: relative;
width: 100%;
height: clamp(300px, 50vh, 100vh);
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.full-img img{
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
}

/* overlay + content same as above */
.full-img::after{
content:"";
position:absolute; inset:0;
background: rgba(0,0,0,0.25);
}
.full-img .center {
position: absolute;
inset: 0;
display:flex;
justify-content:center;
align-items:center;
color:#fff;
z-index:1;
}/* Base reset */

/* ====== Global site menu over hero image ====== */
.site-menu {
position: absolute;
top: 18px;
left: 50%;
transform: translateX(-50%);
z-index: 2;
display: flex;
gap: clamp(8px, 2.5vw, 20px);
background: rgba(0, 0, 0, 0.35);
backdrop-filter: blur(4px);
padding: 10px 14px;
border-radius: 999px;
box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.site-menu a {
color: #fff;
text-decoration: none;
font-weight: 600;
font-size: clamp(12px, 2.4vw, 14px);
letter-spacing: 0.3px;
padding: 8px 12px;
border-radius: 999px;
transition: background 0.2s ease, color 0.2s ease;
white-space: nowrap;
}
.site-menu a:hover,
.site-menu a:focus {
background: rgba(240, 181, 26, 0.9);
color: #0a2533;
outline: none;
}
/* ====== Persistent header (logos + nav combined) ====== */
.site-header {
position: "";
top: 0;
z-index: 10;
background: #ffffff;
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.site-header__inner {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
padding: 10px 16px 8px;
}
.site-brand {
display: flex;
align-items: center;
gap: 14px;
}
.site-brand .logo-circle { width: 86px; height: 86px; }
.site-brand .logo-label { font-size: 12px; }
.site-nav { display: flex; gap: 10px; }
.site-nav a {
display: inline-block;
padding: 8px 12px;
border-radius: 999px;
text-decoration: none;
font-weight: 600;
font-size: 14px;
color: #0a2533;
}
.site-nav a:hover { background: rgba(15,93,130,0.08); }
@media (max-width: 768px){
  .site-header__inner { flex-wrap: wrap; gap: 10px; }
  .site-nav { width: 100%; order: 2; justify-content: center; flex-wrap: wrap; }
}

/* ====== Footer styles ====== */
.site-footer {
background: #0f3f5a;
color: #ffffff;
padding: 32px 20px;
margin-top: 40px;
}
.site-footer__inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-title { color: var(--about-yellow); font-weight: 700; margin: 0 0 12px; }
.footer-text { color: #e9ecef; line-height: 1.7; }
.footer-links a { color: var(--about-yellow); text-decoration: underline; }
.footer-bottom { margin-top: 20px; font-size: 14px; color: #cfe0ea; }

/* ====== About Us page sections ====== */
.aboutus-section { background: #ffffff; color: var(--about-text); padding: 40px 20px; }
.aboutus-wrap { max-width: 1100px; margin: 0 auto; }
.aboutus-title { color: var(--about-navy); font-family: Montserrat, Arial; font-weight: 800; text-transform: uppercase; margin: 0 0 12px; }
.aboutus-rules { display: flex; align-items: center; gap: 16px; margin: 8px 0 24px; }
.aboutus-rule.blue{ height:8px; width:120px; background: var(--about-blue); border-radius:4px; }
.aboutus-rule.yellow{ height:8px; width:260px; background: var(--about-yellow); border-radius:4px; }
.aboutus-body { font-size: 18px; line-height: 1.8; text-align: justify; color: var(--about-text); }

@media (min-width: 900px){ .aboutus-2col { grid-template-columns: 1fr 1fr; gap: 36px; } }

/* Contact form block */
.contact-form { background: #ffffff; padding: 24px; border: 1px solid #e3eef5; border-radius: 8px; box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
.contact-form h3 { margin: 0 0 10px; color: var(--about-navy); }
.form-field { display: grid; gap: 6px; margin: 10px 0; }
.form-field label { font-weight: 600; color: #244a73; font-size: 14px; }
.form-field input, .form-field textarea { padding: 10px 12px; border: 1px solid #cdd8e1; border-radius: 6px; font-size: 14px; }
.form-actions { margin-top: 12px; }
.btn-primary { background: #244a73; color: #fff; border: none; padding: 10px 16px; border-radius: 6px; font-weight: 600; cursor: pointer; }
.btn-primary:hover { background: #1e3d61; }
@media (max-width: 640px) {
  .site-menu {
    top: 10px;
    padding: 8px 10px;
    gap: 6px;
    flex-wrap: wrap;
    row-gap: 6px;
    justify-content: center;
  }
  .site-menu a {
    padding: 6px 10px;
    font-size: 12px;
  }
}

body {
margin: 0;
font-family: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
color: #fff;
background: #0f5d82; /* deep blue */
}

/* Layout */
.poster {
min-height: auto;
padding: clamp(30px, 8vw, 72px) clamp(20px, 6vw, 72px);
display: flex;
flex-direction: column;
gap: clamp(20px, 4vw, 40px);
}

/* Heading */
.heading .kicker {
margin: 0 0 clamp(4px, 1vw, 8px);
font-family: Montserrat, Arial, Helvetica, sans-serif;
font-weight: 700;
letter-spacing: 0.5px;
color:  #FFD700 ; /* warm yellow */
font-size: clamp(18px, 4vw, 28px);
}

.heading .title {
margin: 0;
display: flex;
flex-direction: column;
gap: clamp(4px, 1vw, 8px);
font-family: Montserrat, Arial, Helvetica, sans-serif;
font-weight: 800;
line-height: 1.08;
text-transform: uppercase;
color: #f0b51a;
font-size: clamp(24px, 6vw, 64px);
}

/* Details (date & location) */
.details { margin-top: clamp(8px, 2vw, 16px); }
.detail {
display: flex;
align-items: center;
gap: clamp(12px, 3vw, 20px);
margin: clamp(12px, 3vw, 20px) 0;
}

.detail .icon {
width: clamp(28px, 5vw, 40px);
height: clamp(28px, 5vw, 40px);
display: inline-flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.detail .icon svg {
width: clamp(24px, 4vw, 36px);
height: clamp(24px, 4vw, 36px);
stroke: #ffffff;
fill: none;
stroke-width: 1.8;
stroke-linecap: round;
stroke-linejoin: round;
}

.detail .text { 
font-size: clamp(16px, 3vw, 24px); 
line-height: 1.3;
}
.detail .text strong { font-weight: 600; }

/* Decorative rules */
.rules {
display: flex;
align-items: center;
gap: 18px;
margin: 10px 0 8px 52px; /* aligns under the text after the icons */
}

.rule {
height: 6px;
border-radius: 4px;
display: inline-block;
}
.rule.white { width: 70px; background: #ffffff; }
.rule.yellow { width: 340px; background: #f0b51a; }
@media (max-width: 600px) {
  .rule.yellow {
    width: 100%;
    max-width: 180px;
    min-width: 80px;
    background: #f0b51a;
    display: block;
    margin: 0 auto;
  }
}
@media (min-width: 601px) {
  .rule.yellow {
    width: 340px;
    max-width: 100%;
    background: #f0b51a;
    display: block;
    margin: 0 auto;
  }
}
/* Responsive alignment for Registration and Bank yellow lines */
.reg-rules, .bank-rules {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px 0 36px;
}

.reg-rule.yellow, .bank-rule.yellow {
  height: 8px;
  border-radius: 4px;
  display: inline-block;
  width: 260px;
  background: var(--about-yellow);
}
@media (max-width: 600px) {
  .reg-rule.yellow, .bank-rule.yellow {
    width: 120px;
  }
}


/* Organizers */
.organizers { margin-top: clamp(16px, 4vw, 32px); }
.organizers .label {
margin: clamp(24px, 5vw, 40px) 0 clamp(10px, 2vw, 16px);
color: #f0b51a;
font-family: Montserrat, Arial, Helvetica, sans-serif;
font-weight: 700;
letter-spacing: 1px;
font-size: clamp(16px, 3vw, 22px);
}

.organizers .org { margin: clamp(12px, 3vw, 20px) 0; }
.organizers .name {
margin: 0 0 clamp(2px, 1vw, 6px);
font-size: clamp(16px, 3vw, 22px);
color: rgba(255, 255, 255, 0.95);
line-height: 1.3;
}
.organizers .dept {
margin: 0;
font-size: clamp(14px, 2.5vw, 19px);
color: rgba(255, 255, 255, 0.8);
line-height: 1.4;
}

/* Responsive tweaks */
@media (max-width: 640px) {
.poster { padding: 40px 24px; }
.detail .text { font-size: 20px; }
.rules { margin-left: 48px; }
.rule.yellow { width: 240px; }
}

/* About section styles */
:root{
--about-bg:#ffffff;
--about-navy:#0a2533; /* deep navy for headings */
--about-text:#22313f; /* body text */
--about-yellow:#f0b51a; /* accent yellow */
--about-blue:#0f5d82;  /* accent blue */
}

.about-section{
position: relative;
background: var(--about-bg);
color: var(--about-text);
padding: clamp(40px, 8vw, 72px) clamp(20px, 6vw, 96px);
overflow: hidden;
}

/* vertical yellow stripe on the right */
.about-section::after{
content: "";
position: absolute; top: 0; right: 0; bottom: 0;
width: 22px; background: var(--about-yellow);
}

.about-wrap{ max-width: 920px; margin: 0; }
.about-kicker{ display:none; }

.about-title{
margin: 0 0 24px 0;
font-family: Montserrat, Arial, Helvetica, sans-serif;
font-weight: 800;
line-height: 0.95;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--about-navy);
font-size: clamp(40px, 8vw, 92px);
}

.about-rules{ display:flex; align-items:center; gap:18px; margin: 8px 0 36px; }
.about-rule{ height:8px; border-radius:4px; display:inline-block; }
.about-rule.blue{ width:120px; background: var(--about-blue); }
.about-rule.yellow{ width:340px; background: var(--about-yellow); }

.about-body{
font-family: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
font-size: clamp(16px, 3vw, 20px);
line-height: 1.7;
color: var(--about-text);
text-align: justify;
text-justify: inter-word;
letter-spacing: 0.2px;
}

@media (max-width: 768px){
.about-section{ padding: 40px 24px 56px; }
.about-title{ font-size: clamp(34px, 10vw, 56px); }
.about-rule.yellow{ width: 220px; }
}
.full-img {
width: 100%;
height: 100vh; /* full screen height */
overflow: hidden;
}

.full-img img {
width: 100%;
height: 100%;
object-fit: cover;
}

/* Responsive second image */
.second-img {
height: clamp(300px, 50vh, 100vh);
min-height: 300px;
}

.second-img img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}


/* Key Themes section styles */
.themes-section{
position: relative;
background: var(--about-bg);
color: var(--about-text);
padding: clamp(40px, 8vw, 72px) clamp(20px, 6vw, 96px);
overflow: hidden;
}
/* vertical yellow stripe on the left */
.themes-section::before{
content: "";
position: absolute; top: 0; left: 0; bottom: 0;
width: 28px; background: var(--about-yellow);
}
.themes-wrap{ max-width: 920px; margin-left: 48px; }
.themes-title{
margin: 0 0 16px 0;
font-family: Montserrat, Arial, Helvetica, sans-serif;
font-weight: 800;
line-height: 0.95;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--about-navy);
font-size: clamp(40px, 8vw, 92px);
}
.themes-rules{ display:flex; align-items:center; gap:18px; margin: 8px 0 36px; }
.themes-rule{ height:8px; border-radius:4px; display:inline-block; }
.themes-rule.blue{ width:120px; background: var(--about-blue); }
.themes-rule.yellow{ width:220px; background: var(--about-yellow); }
.themes-list{
margin: 0;
padding-left: clamp(20px, 4vw, 28px); /* bullet indent */
list-style: disc;
display: grid;
gap: clamp(16px, 3vw, 22px);
font-family: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
font-size: clamp(16px, 3vw, 20px);
line-height: 1.6;
color: var(--about-text);
}
.themes-list li{ max-width: 900px; }

@media (max-width: 768px){
.themes-section{ padding: 40px 24px 56px 24px; }
.themes-wrap{ margin-left: 16px; }
.themes-rule.yellow{ width: 160px; }
}

.full-img {
width: 100%;
height: 100vh; /* full screen height */
overflow: hidden;
}

.full-img img {
width: 100%;
height: 100%;
object-fit: cover;
}

/* Responsive third image */
.third-img {
height: clamp(250px, 45vh, 80vh);
min-height: 250px;
}

.third-img img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
filter: brightness(0.97) contrast(1.08) saturate(1.15);
border-radius: 16px;
box-shadow: 0 4px 24px rgba(15,63,90,0.10);
}


/* Custom style for h.jpg and f1.jpeg */
img[src*="h.jpg"], img[src*="f1.jpeg"] {
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(15,63,90,0.13);
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.98) contrast(1.12) saturate(1.18) blur(0.5px);
  transition: filter 0.3s, box-shadow 0.3s;
  width: 100%;
  max-width: 100vw;
  height: auto;
}
@media (max-width: 600px) {
  .full-img, .third-img, .forth-img {
    height: 38vh !important;
    min-height: 160px !important;
  }
  img[src*="h.jpg"], img[src*="f1.jpeg"] {
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(15,63,90,0.10);
    filter: brightness(1) contrast(1.08) saturate(1.10) blur(0.2px);
    width: 100vw;
    max-width: 100vw;
    height: auto;
    min-width: 0;
  }
}

/* Programme Highlights section styles */
.highlights-section{
position: relative;
background: var(--about-bg);
color: var(--about-text);
padding: clamp(40px, 8vw, 72px) clamp(20px, 6vw, 96px);
overflow: hidden;
}
/* vertical yellow stripe on the right */
.highlights-section::after{
content: "";
position: absolute; top: 0; right: 0; bottom: 0;
width: 28px; background: var(--about-yellow);
}
.highlights-wrap{ max-width: 980px; margin: 0; }
.highlights-title{
margin: 0 0 16px 0;
font-family: Montserrat, Arial, Helvetica, sans-serif;
font-weight: 800;
line-height: 0.95;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--about-navy);
font-size: clamp(40px, 8vw, 92px);
}
.highlights-rules{ display:flex; align-items:center; gap:18px; margin: 8px 0 36px; }
.highlights-rule{ height:8px; border-radius:4px; display:inline-block; }
.highlights-rule.blue{ width:120px; background: var(--about-blue); }
.highlights-rule.yellow{ width:260px; background: var(--about-yellow); }

.schedule{ list-style: none; margin: 0; padding: 0; display: grid; gap: 34px; }
.schedule li{ display: grid; gap: 6px; }
.day-title{
font-family: Montserrat, Arial, Helvetica, sans-serif;
font-size: clamp(20px, 4vw, 28px);
font-weight: 700;
color: var(--about-navy);
display: flex; align-items: center; gap: clamp(8px, 2vw, 12px);
}
.day-title::before{
content: "•"; color: var(--about-navy); font-size: clamp(22px, 4vw, 30px); line-height: 1;
}
.day-sub{
font-family: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
font-size: clamp(16px, 3vw, 19px); 
line-height: 1.6; 
color: var(--about-text);
padding-left: clamp(20px, 4vw, 28px); /* align with bullet */
}

@media (max-width: 768px){
.highlights-section{ padding: 40px 24px 56px; }
.highlights-rule.yellow{ width: 180px; }
}
.full-img {
width: 100%;
height: 100vh; /* full screen height */
overflow: hidden;
}

.full-img img {
width: 100%;
height: 100%;
object-fit: cover;
}

/* Responsive fourth image */
.third-img {
height: clamp(250px, 45vh, 80vh);
min-height: 250px;
}

.third-img img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}
/* Who Can Participate section (left stripe + bullets) */
.who-section{
position: relative;
background: var(--about-bg);
color: var(--about-text);
padding: 64px 96px 64px 72px;
overflow: hidden;
}
.who-section::before{
content: ""; 
position:absolute; top:0; left:0; bottom:0; width:28px; background:var(--about-yellow);
}
.who-wrap{ max-width: 980px; margin-left: 48px; }
.who-title{
margin: 0 0 16px 0;
font-family: Montserrat, Arial, Helvetica, sans-serif;
font-weight: 800;
line-height: .95;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--about-navy);
font-size: clamp(40px, 8vw, 92px);
}
.who-rules{ display:flex; align-items:center; gap:18px; margin: 8px 0 26px; }
.who-rule{ height:8px; border-radius:4px; display:inline-block; }
.who-rule.blue{ width:120px; background: var(--about-blue); }
.who-rule.yellow{ width:260px; background: var(--about-yellow); }
.who-list{
margin: 0; padding-left: 28px; list-style: disc;
display:grid; gap: 18px;
font-family: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
font-size: 20px; line-height: 1.9; color: var(--about-text);
}

/* Group wrapper to extend a single left yellow stripe across multiple sections */
.left-stripe-group{ position: relative; background: var(--about-bg); }
.left-stripe-group::before{
content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 28px; background: var(--about-yellow);
}
/* hide the individual who-section stripe when grouped */
.left-stripe-group .who-section::before{ content: none; }

/* Registration Details section */
.reg-section{ 
background: var(--about-bg); 
color: var(--about-text); 
padding: clamp(30px, 6vw, 60px) clamp(20px, 5vw, 60px); 
}
.reg-title{
margin: clamp(20px, 5vw, 30px) 0 clamp(15px, 4vw, 20px) 0;
font-family: Montserrat, Arial, Helvetica, sans-serif;
font-weight: 800;
letter-spacing: 1px;
text-transform: uppercase;
color: var(--about-navy);
font-size: clamp(28px, 6vw, 40px);
text-align: center;
}

/* Desktop-specific styles */
@media (min-width: 769px) {
.reg-title {
text-align: left;
font-size: 36px;
margin: 24px 0 18px 0;
}
.bank-title {
text-align: left;
font-size: 36px;
margin: 24px 0 18px 0;
}
}
.reg-card{
background: var(--about-blue);
border-radius: 2px;
padding: clamp(25px, 6vw, 40px);
color: #fff;
max-width: 100%;
box-shadow: 0 2px 8px rgba(15, 93, 130, 0.2);
}
.reg-list{ 
list-style:none; 
margin:0; 
padding:0; 
display:grid; 
gap: clamp(15px, 4vw, 20px); 
}
.reg-item{ 
display:grid; 
gap: clamp(8px, 2vw, 12px);
}
.reg-item .head{
font-family: Montserrat, Arial, Helvetica, sans-serif;
font-weight: 700; 
color: var(--about-yellow); 
font-size: clamp(18px, 3vw, 22px);
display:flex; 
align-items:center; 
gap:clamp(8px, 2vw, 12px);
}
.reg-item .head::before{ 
content:"•"; 
color:#fff; 
font-size: clamp(20px, 3vw, 26px); 
line-height:1; 
}
.reg-item .sub{ 
font-size: clamp(16px, 3vw, 18px); 
line-height: 1.8; 
color: rgba(255,255,255,.9); 
padding-left: clamp(20px, 4vw, 28px); 
}
.reg-guidelines{ 
margin: clamp(20px, 4vw, 25px) 0 clamp(10px, 2vw, 15px); 
font-weight: 700; 
color: var(--about-yellow); 
font-family: Montserrat, Arial, Helvetica, sans-serif; 
font-size: clamp(18px, 3vw, 22px);
}
.reg-bullets{ 
margin: 8px 0 0 0; 
padding-left: 28px; 
list-style: disc; 
color: #fff; 
display:grid; 
gap: 10px; 
font-size: 18px; 
line-height: 1.7; 
}

@media (max-width: 768px){
.who-section{ padding: 40px 24px 40px; }
.who-wrap{ margin-left: 16px; }

/* Registration Details Mobile */
.reg-section{ 
padding: 30px 20px; 
}
.reg-card{ 
padding: 25px 20px; 
background: linear-gradient(135deg, var(--about-blue), #0a4a6b);
border-radius: 8px;
box-shadow: 0 4px 15px rgba(15, 93, 130, 0.3);
border: 2px solid rgba(255, 255, 255, 0.1);
}
.reg-item {
background: rgba(255, 255, 255, 0.05);
padding: 15px;
gap: 10px;
border-radius: 6px;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.reg-bullets {
list-style: none;
padding-left: 0;
}
.reg-bullets li {
background: rgba(255, 255, 255, 0.05);
padding: 12px;
border-radius: 4px;
border-left: 3px solid var(--about-yellow);
}

/* Bank Details Mobile */
.bank-section{ 
padding: 30px 20px; 
}
.bank-card{ 
padding: 25px 20px; 
background: linear-gradient(135deg, var(--about-blue), #0a4a6b);
border-radius: 8px;
box-shadow: 0 4px 15px rgba(15, 93, 130, 0.3);
border: 2px solid rgba(255, 255, 255, 0.1);
}
.bank-item {
background: rgba(255, 255, 255, 0.05);
padding: 15px;
border-radius: 6px;
border: 1px solid rgba(255, 255, 255, 0.1);
flex-direction: column;
align-items: flex-start;
gap: 8px;
}
.bank-item .label {
min-width: auto;
font-size: 16px;
}
.bank-item .value {
font-size: 15px;
}
}

/* Bank Details section */
.bank-section{ 
background: var(--about-bg); 
color: var(--about-text); 
padding: clamp(30px, 6vw, 60px) clamp(20px, 5vw, 60px); 
}
.bank-title{
margin: clamp(20px, 5vw, 30px) 0 clamp(15px, 4vw, 20px) 0;
font-family: Montserrat, Arial, Helvetica, sans-serif;
font-weight: 800;
letter-spacing: 1px;
text-transform: uppercase;
color: var(--about-navy);
font-size: clamp(28px, 6vw, 40px);
text-align: center;
}
.bank-card{
background: var(--about-blue);
border-radius: 2px;
padding: clamp(25px, 6vw, 40px);
color: #fff;
max-width: 100%;
box-shadow: 0 2px 8px rgba(15, 93, 130, 0.2);
}
.bank-list{ 
list-style:none; 
margin:0; 
padding:0; 
display:grid; 
gap: clamp(8px, 2vw, 12px); 
}
.bank-item{ 
font-size: clamp(16px, 3vw, 20px); 
line-height: 1.9; 
}
.bank-item .label{ 
color: var(--about-yellow); 
font-weight: 700; 
}
.bank-item .value{ 
color: #eaf3f7; 
}

@media (max-width: 480px){
/* Extra small mobile adjustments */
.reg-section{ 
padding: 25px 15px; 
}
.reg-card{ 
padding: 20px 15px; 
}
.reg-title {
font-size: 24px;
margin: 20px 0 15px;
}
.reg-item {
padding: 12px;
gap: 8px;
}
.reg-item .head {
font-size: 18px;
}
.reg-item .sub {
font-size: 15px;
padding-left: 20px;
}

.bank-section{ 
padding: 25px 15px; 
}
.bank-card{ 
padding: 20px 15px; 
}
.bank-title {
font-size: 24px;
margin: 20px 0 15px;
}
.bank-item {
padding: 12px;
gap: 6px;
}
.bank-item .label {
font-size: 15px;
}
.bank-item .value {
font-size: 14px;
}
}
/* Steering Committee + Workshop Directors */
.committee-section{
position: relative;
background: var(--about-bg);
color: var(--about-text);
padding: clamp(40px, 8vw, 80px) clamp(20px, 6vw, 72px);
overflow: hidden;
}
/* subtle right yellow stripe as in other pages */
.committee-section::after{
content: ""; position:absolute; top:0; right:0; bottom:0; width:22px; background: var(--about-yellow);
}
.committee-wrap{ max-width: 1080px; margin: 0 auto; }
.committee-title{
margin: 0 0 16px 0;
font-family: Montserrat, Arial, Helvetica, sans-serif;
font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
color: var(--about-navy);
font-size: clamp(36px, 7vw, 72px);
}
.committee-rules{ display:flex; align-items:center; gap:18px; margin: 8px 0 36px; }
.committee-rule{ height:8px; border-radius:4px; display:inline-block; }
.committee-rule.blue{ width:120px; background: var(--about-blue); }
.committee-rule.yellow{ width:260px; background: var(--about-yellow); }

.committee-grid{
display:grid; 
grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 40vw, 300px), 1fr));
gap: clamp(24px, 5vw, 48px); 
justify-items: center; 
align-items: start;
margin-bottom: clamp(24px, 5vw, 40px);
}
.person{ 
text-align:center; 
max-width: clamp(300px, 45vw, 420px); 
width: 100%;
}
.avatar{
width: clamp(100px, 15vw, 140px); 
height: clamp(100px, 15vw, 140px); 
border-radius: 50%; 
overflow: hidden; 
margin: 0 auto clamp(10px, 2vw, 14px); 
border: clamp(4px, 1vw, 6px) solid #f5f5f5;
box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.avatar img{ width:100%; height:100%; object-fit: cover; display:block; }
.role-strong{ 
font-family: Montserrat, Arial, Helvetica, sans-serif; 
font-weight: 700; 
color: var(--about-navy); 
font-size: clamp(16px, 3vw, 18px); 
line-height: 1.3;
}
.role-sub{ 
font-family: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; 
font-size: clamp(14px, 2.5vw, 16px); 
color:#414b57; 
line-height: 1.4;
}

.directors-title{
margin: clamp(20px, 4vw, 28px) 0 clamp(8px, 2vw, 12px); 
text-align:center;
font-family: Montserrat, Arial, Helvetica, sans-serif; 
font-weight: 700; 
color: var(--about-navy); 
font-size: clamp(20px, 4vw, 26px);
}
.directors-grid{ 
display:grid; 
grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 35vw, 250px), 1fr)); 
gap: clamp(24px, 5vw, 48px); 
justify-items:center; 
}

@media (max-width: 900px){
.committee-grid{ grid-template-columns: 1fr; }
.directors-grid{ grid-template-columns: 1fr; }
}:root{
--org-blue: #114a6d;
--org-blue-2: #0f3f5a;
--org-yellow: #f0c419; /* If you need exact match to the screenshot, switch to #f0b51a */
--org-white: #ffffff;
}

/* Section wrapper */
.org-section{
background: var(--org-blue-2);
color: var(--org-white);
width: 100%;
}

/* Top large image */
.org-hero{ width: 100%; overflow: hidden; }
.org-hero img{
display: block;
width: 100%;
object-fit: cover;
}

/* Blue panel with vertical yellow stripe on the left */
.org-panel{
position: relative;
background: var(--org-blue);
}
.org-panel__accent{
display:none;
}
.org-panel__inner{
max-width: 1100px;
margin: 0 auto;
padding: clamp(24px, 5vw, 56px) clamp(16px, 4vw, 28px);
margin-left: clamp(24px, 6vw, 48px);           /* offset content from the left stripe */
}

/* Headings and list */
.org-heading{
margin: 0 0 18px;
font-weight: 700;
color: var(--org-yellow);
font-size: clamp(22px, 2.6vw, 30px);
}
.org-list{
margin: 0 0 28px 0;
padding-left: 22px;
list-style: disc;
}
.org-list li{
margin: clamp(8px, 2vw, 12px) 0;
line-height: 1.6;
color: rgba(255,255,255,0.95);
font-size: clamp(16px, 3vw, 18px);
}
.org-subheading{
margin: clamp(20px, 4vw, 30px) 0 clamp(10px, 2vw, 14px);
font-weight: 600;
color: var(--org-yellow);
font-size: clamp(18px, 3vw, 26px);
}

/* Contact block */
.contact-block{ display: grid; gap: 18px; }
.contact-row{ display:flex; align-items:flex-start; gap:14px; }
.contact-icon{
color: var(--org-yellow);
width: 28px; height: 28px; flex: 0 0 28px;
}
.contact-icon svg{ width: 24px; height: 24px; display:block; }
.contact-text{ line-height: 1.6; }
.contact-name{ margin: 0; font-size: clamp(16px, 3vw, 18px); }
.contact-title{ margin: 0; color: rgba(255,255,255,0.85); font-size: clamp(14px, 2.5vw, 15px); }
.contact-email{ margin: clamp(2px, 1vw, 4px) 0 0; font-size: clamp(14px, 2.5vw, 15px); }
.contact-email a{ color: var(--org-white); text-decoration: underline; }
.contact-phone{ margin: 0; font-size: clamp(16px, 3vw, 18px); }
.contact-address{ margin: 0; font-size: clamp(14px, 2.5vw, 16px); color: rgba(255,255,255,0.9); }
.contact-link{ margin: 6px 0 0; }
.contact-link a{ color: var(--org-yellow); font-weight: 700; text-decoration: underline; }

/* Responsive */
@media (max-width: 768px){
.org-panel__inner{ padding: 28px 18px 38px; margin-left: 16px; }
}


/* ================= Registration Form Page (PDF replica) ================ */
:root{
--rf-navy: #244a73;      /* heading/navy blue from form */
--rf-blue: #2c5d92;      /* table border blue */
--rf-text: #1a1a1a;
}

.regform-section{
background: #ffffff;
color: var(--rf-text);
padding: clamp(24px, 5vw, 64px) clamp(16px, 4vw, 28px);
font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}
.regform-wrap{ max-width: 980px; margin: 0 auto; }

/* Logos row */
.regform-logos{ 
display:flex; 
gap: clamp(12px, 3vw, 24px); 
align-items:center; 
margin-bottom: clamp(8px, 2vw, 12px); 
flex-wrap: wrap;
justify-content: center;
}
.regform-logos img{ 
height: clamp(40px, 8vw, 54px); 
width: auto; 
object-fit: contain; 
display:block; 
}

/* Big title and underline */
.regform-title{
margin: clamp(6px, 2vw, 8px) 0 clamp(6px, 2vw, 8px);
font-weight: 800;
font-size: clamp(20px, 5vw, 40px);
color: var(--rf-navy);
letter-spacing: 0.4px;
text-align: center;
}
.regform-subtitle{
margin: 0 0 clamp(12px, 3vw, 16px);
color: var(--rf-navy);
font-weight: 600;
font-size: clamp(14px, 2.5vw, 16px);
text-align: center;
}
.regform-hr{ height: 2px; background: var(--rf-blue); margin: clamp(6px, 2vw, 8px) 0 clamp(16px, 3vw, 22px); }

/* Meta lines */
.regform-meta{ 
margin: 0 0 clamp(12px, 3vw, 18px); 
color: #333; 
font-size: clamp(14px, 2.5vw, 16px);
text-align: center;
}
.regform-meta strong{ font-weight: 700; }

/* Section headers */
.rf-block-title{
margin: 26px 0 6px;
color: var(--rf-navy);
font-weight: 700;
letter-spacing: .4px;
}

/* Desktop Table Form Styling */
.rf-table{ 
width: 100%; 
border-collapse: collapse; 
table-layout: fixed; 
font-size: 14px;
}
.rf-table th, .rf-table td{
border: 2px solid var(--rf-blue);
padding: 8px 10px;
font-size: 14px;
word-wrap: break-word;
}
.rf-table th{ 
background: #f6f8fb; 
text-align: left; 
font-weight: 700; 
color: #233c60; 
font-size: 14px;
}
.rf-table .rf-right-narrow{ width: 220px; }
.rf-checks{ display:flex; flex-wrap: wrap; gap: 14px 16px; align-items:center; font-size: 14px; }
.rf-checks label{ display:inline-flex; align-items:center; gap:6px; }
.rf-checks input{ accent-color: var(--rf-blue); }

/* Desktop form visibility - hide mobile forms by default */
.mobile-form-fields,
.mobile-payment-fields {
display: none;
}

/* Address block */
.rf-lines{ margin: 10px 0 16px; color:#333; }
.rf-line{ height: 24px; border-bottom: 1px solid #c7d3e1; margin-bottom: 10px; }
.rf-inline{ display:flex; gap: 24px; align-items:center; margin: 12px 0 0; }

/* Payment details */
.rf-note{ margin-top: 10px; font-size: 14px; }
.rf-checkbox-line{ display:flex; align-items:center; gap:8px; }

/* Footer email line */
.rf-emailto{ margin: 28px 0 0; color: var(--rf-navy); font-weight: 700; }
.rf-contact{ margin: 8px 0 0; font-weight: 700; }
.rf-contact a{ color: #1a5fb4; text-decoration: underline; font-weight: 700; }

@media (max-width: 720px){
.regform-logos{ gap: 14px; }
.regform-logos img{ height: 44px; }

/* Hide ALL desktop forms on mobile */
.desktop-form,
.desktop-payment,
.desktop-note,
.desktop-inline,
.rf-table,
.rf-note,
.rf-inline {
display: none !important;
}

/* Show mobile forms on mobile */
.mobile-form-fields,
.mobile-payment-fields {
display: block !important;
}
}

@media (max-width: 480px){
/* Complete mobile redesign of registration form */
.regform-section {
padding: 20px 15px;
}

.regform-logos{ 
flex-direction: column; 
gap: 15px;
margin-bottom: 20px;
}

.regform-logos img {
height: 50px;
}

.regform-title {
font-size: 24px;
margin: 15px 0 10px;
}

.regform-subtitle {
font-size: 14px;
margin-bottom: 20px;
line-height: 1.4;
}

.regform-meta {
font-size: 14px;
margin-bottom: 25px;
}

.rf-block-title {
font-size: 18px;
margin: 25px 0 15px;
color: var(--rf-navy);
text-align: center;
background: #f0f4f8;
padding: 10px;
border-radius: 5px;
}

/* Mobile form fields are now the default */

/* Create mobile form field wrapper */
.mobile-form-field {
background: white;
border: 2px solid var(--rf-blue);
border-radius: 8px;
padding: 15px;
margin-bottom: 15px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mobile-field-label {
font-weight: 700;
color: var(--rf-navy);
font-size: 16px;
margin-bottom: 10px;
display: block;
}

.mobile-field-input {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 16px;
background: #f9f9f9;
}

.mobile-radio-group {
display: flex;
flex-direction: column;
gap: 10px;
}

.mobile-radio-item {
display: flex;
align-items: center;
gap: 10px;
padding: 8px;
background: #f0f4f8;
border-radius: 4px;
}

.mobile-radio-item input[type="radio"] {
width: 18px;
height: 18px;
accent-color: var(--rf-blue);
}

.mobile-radio-item label {
font-size: 15px;
margin: 0;
}

.mobile-checkbox-item {
display: flex;
align-items: center;
gap: 10px;
padding: 10px;
background: #f0f4f8;
border-radius: 4px;
margin-bottom: 10px;
}

.mobile-checkbox-item input[type="checkbox"] {
width: 18px;
height: 18px;
accent-color: var(--rf-blue);
}

.mobile-checkbox-item label {
font-size: 15px;
margin: 0;
}

.rf-actions{ 
flex-direction: column; 
gap: 15px;
margin-top: 30px;
}

.rf-btn{ 
width: 100%; 
padding: 16px 24px;
font-size: 16px;
border-radius: 6px;
font-weight: 600;
}

.rf-emailto {
font-size: 16px;
margin: 30px 0 10px;
text-align: center;
}

.rf-contact {
font-size: 14px;
text-align: center;
}
}

/* Registration form inputs to look like the PDF lines */
.rf-input, .rf-select, .rf-textarea{
width: 100%;
border: 0;
background: transparent;
font-size: clamp(12px, 2.5vw, 14px);
padding: clamp(2px, 1vw, 4px) 0;
color: var(--rf-text);
}
.rf-textarea{ resize: vertical; min-height: 60px; }
.rf-radio-group, .rf-checks{ display:flex; gap: 12px 16px; align-items:center; flex-wrap: wrap; }
.rf-actions{ margin-top: 18px; display:flex; gap:12px; }
.rf-btn{
background: var(--rf-navy);
color: #fff;
border: none;
padding: 10px 16px;
font-weight: 600;
cursor: pointer;
}

/* Comprehensive Mobile Responsiveness */
@media (max-width: 768px) {
/* General mobile adjustments */
body {
font-size: 14px;
}

/* Ensure all images are responsive */
.full-img {
height: clamp(250px, 40vh, 60vh);
}

/* Specific mobile adjustments for 2nd, 3rd and 4th images */
.second-img {
height: clamp(250px, 40vh, 60vh);
min-height: 250px;
}

.third-img {
height: clamp(200px, 35vh, 50vh);
min-height: 200px;
}

.forth-img {
height: clamp(200px, 35vh, 50vh);
min-height: 200px;
}

/* Adjust decorative rules for mobile */
.rule.yellow { 
width: clamp(150px, 40vw, 240px); 
}
.about-rule.yellow { 
width: clamp(120px, 35vw, 180px); 
}
.themes-rule.yellow { 
width: clamp(100px, 30vw, 160px); 
}
.highlights-rule.yellow { 
width: clamp(120px, 35vw, 180px); 
}
.who-rule.yellow { 
width: clamp(120px, 35vw, 180px); 
}
.committee-rule.yellow { 
width: clamp(120px, 35vw, 180px); 
}

/* Improve spacing for mobile */
.poster {
padding: clamp(20px, 5vw, 40px) clamp(15px, 4vw, 24px);
}

/* Better mobile layout for organizers */
.organizers .name,
.organizers .dept {
text-align: center;
}

/* Mobile-friendly contact section */
.contact-row {
flex-direction: column;
align-items: flex-start;
gap: 8px;
}
.contact-icon {
width: 24px;
height: 24px;
}
}

@media (max-width: 480px) {
/* Extra small mobile adjustments */
.full-img {
height: clamp(200px, 35vh, 50vh);
}

/* Extra small mobile adjustments for 2nd, 3rd and 4th images */
.second-img {
height: clamp(220px, 35vh, 50vh);
min-height: 220px;
}

.third-img {
height: clamp(180px, 30vh, 45vh);
min-height: 180px;
}

.forth-img {
height: clamp(180px, 30vh, 45vh);
min-height: 180px;
}

/* Keep logos horizontal on very small screens */
.logo-container {
flex-direction: row;
gap: 15px;
flex-wrap: wrap;
justify-content: center;
}

/* Adjust committee grid for very small screens */
.committee-grid {
grid-template-columns: 1fr;
gap: 20px;
}

.directors-grid {
grid-template-columns: 1fr;
gap: 20px;
}

/* Better mobile form layout */
.rf-table {
display: block;
overflow-x: auto;
white-space: nowrap;
}

.rf-table th,
.rf-table td {
min-width: 120px;
}

/* Mobile-friendly buttons */
.rf-btn {
padding: 12px 20px;
font-size: 16px;
}
}
@media (min-width: 1200px) {
  .committee-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .directors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* ================= Registration Options Section ================ */
.registration-options-section {
background: #ffffff;
color: var(--rf-text);
padding: clamp(40px, 8vw, 80px) clamp(20px, 5vw, 40px);
font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.registration-options-wrap {
max-width: 1000px;
margin: 0 auto;
}

/* Logos row */
.registration-logos {
display: flex;
gap: clamp(12px, 3vw, 24px);
align-items: center;
margin-bottom: clamp(20px, 4vw, 30px);
flex-wrap: wrap;
justify-content: center;
}

.registration-logos img {
height: clamp(60px, 10vw, 80px);
width: auto;
object-fit: contain;
display: block;
}

/* Title and subtitle */
.registration-options-title {
margin: clamp(15px, 3vw, 20px) 0;
font-weight: 800;
font-size: clamp(28px, 6vw, 48px);
color: var(--rf-navy);
letter-spacing: 0.4px;
text-align: center;
}

.registration-subtitle {
margin: 0 0 clamp(15px, 3vw, 20px);
color: var(--rf-navy);
font-weight: 600;
font-size: clamp(14px, 2.5vw, 18px);
text-align: center;
}

.registration-hr {
height: 3px;
background: linear-gradient(to right, var(--rf-blue), var(--about-yellow));
margin: clamp(10px, 2vw, 15px) 0 clamp(20px, 4vw, 30px);
border-radius: 2px;
}

/* Meta information */
.registration-meta {
margin: 0 0 clamp(40px, 6vw, 60px);
color: #333;
font-size: clamp(16px, 3vw, 18px);
text-align: center;
font-weight: 600;
}

.registration-meta strong {
font-weight: 700;
color: var(--rf-navy);
}

/* Registration buttons container */
.registration-buttons-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: clamp(30px, 5vw, 50px);
margin-bottom: clamp(40px, 6vw, 60px);
}

.registration-option {
background: linear-gradient(135deg, #f8f9fa, #ffffff);
border: 2px solid #e9ecef;
border-radius: 15px;
padding: clamp(30px, 5vw, 40px);
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
position: relative;
overflow: hidden;
}

.registration-option::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(to right, var(--rf-blue), var(--about-yellow));
transform: scaleX(0);
transition: transform 0.3s ease;
}

.registration-option:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
border-color: var(--rf-blue);
}

.registration-option:hover::before {
transform: scaleX(1);
}

.option-icon {
font-size: clamp(40px, 8vw, 60px);
margin-bottom: clamp(15px, 3vw, 20px);
display: block;
}

.registration-option h3 {
color: var(--rf-navy);
font-size: clamp(20px, 4vw, 24px);
font-weight: 700;
margin-bottom: clamp(10px, 2vw, 15px);
}

.registration-option p {
color: #666;
font-size: clamp(14px, 2.5vw, 16px);
line-height: 1.6;
margin-bottom: clamp(20px, 4vw, 30px);
}

/* Registration buttons */
.registration-btn {
display: inline-flex;
align-items: center;
gap: 10px;
padding: clamp(12px, 2.5vw, 16px) clamp(20px, 4vw, 30px);
border: none;
border-radius: 50px;
font-size: clamp(14px, 2.5vw, 16px);
font-weight: 600;
text-decoration: none;
cursor: pointer;
transition: all 0.3s ease;
min-width: 200px;
justify-content: center;
}

.pdf-btn {
background: linear-gradient(135deg, #dc3545, #c82333);
color: white;
box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.pdf-btn:hover {
background: linear-gradient(135deg, #c82333, #a71e2a);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.online-btn {
background: linear-gradient(135deg, var(--rf-blue), #1e4a73);
color: white;
box-shadow: 0 4px 15px rgba(44, 93, 146, 0.3);
}

.online-btn:hover {
background: linear-gradient(135deg, #1e4a73, #163a5c);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(44, 93, 146, 0.4);
}

.btn-icon {
font-size: clamp(16px, 3vw, 18px);
}

/* Contact information */
.registration-contact {
background: linear-gradient(135deg, var(--rf-navy), #1e4a73);
color: white;
padding: clamp(25px, 5vw, 35px);
border-radius: 12px;
text-align: center;
box-shadow: 0 4px 15px rgba(36, 74, 115, 0.2);
}

.contact-title {
font-size: clamp(16px, 3vw, 18px);
font-weight: 700;
color: var(--about-yellow);
margin-bottom: clamp(10px, 2vw, 15px);
}

.contact-info {
font-size: clamp(14px, 2.5vw, 16px);
margin-bottom: clamp(8px, 1.5vw, 12px);
}

.contact-info a {
color: var(--about-yellow);
text-decoration: underline;
font-weight: 600;
}

.contact-info a:hover {
color: white;
}

.contact-phone {
font-size: clamp(16px, 3vw, 18px);
font-weight: 600;
color: #e9ecef;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
.registration-buttons-container {
grid-template-columns: 1fr;
gap: 25px;
}

.registration-option {
padding: 25px 20px;
}

.registration-logos {
gap: 15px;
}

.registration-logos img {
height: 65px;
}
}

@media (max-width: 480px) {
.registration-options-section {
padding: 30px 15px;
}

.registration-option {
padding: 20px 15px;
}

.registration-btn {
min-width: 180px;
padding: 12px 20px;
}

.registration-contact {
padding: 20px 15px;
}
}