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

    :root {
      --navy: #003F5E;
      --navy-dark: #00233D;
      --gold: #FFD100;
      --gold-btn: #FFD100;
      --white: #ffffff;
      --off-white: #f7f7f5;
      --text-dark: #1a1a1a;
      --text-body: #3a3a3a;
      --text-light: #666;
      --border: #d8d8d8;
      --input-bg: #ffffff;
      --font-serif: 'Futura Std';
      --font-sans: 'Futura Std';
    }

    body {
      font-family: var(--font-sans);
      color: var(--text-body);
      background: #fff;
      font-size: 14px;
      line-height: 1.6;
    }

    /* ── HERO IMAGE ── */
    .hero-image {
      width: 100%;
	 max-width:1000px;
      height: 540px;
      overflow: hidden;
		 margin: 0 auto;
		margin-top:100px;
    }
    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
      display: block;
    }

    /* ── EVENT META ── */
    .event-meta {
      text-align: center;
      padding: 40px 20px 32px;
      max-width: 1000px;
		width:100%;
      margin: 0 auto;
    }
    .event-date-badge {
      display: inline-block;
      border: 1px solid #0d2340;
      border-radius: 3px;
      color: var(--navy);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.04em;
      padding: 5px 14px;
      margin-bottom: 20px;
      font-family: var(--font-sans);
		background:#DCF2FD;

}
    .event-title {
      font-family: var(--font-serif);
      font-size: 64px;
      font-weight: 300;
      color: var(--text-dark);
      line-height: 1.2;
      margin-bottom: 16px;
      letter-spacing: -0.01em;
    }
    .event-subtitle {
      font-size: 24px;
      color: var(--text-body);
      line-height: 1.65;
      margin-bottom: 28px;
      max-width: 620px;
      margin-left: auto;
      margin-right: auto;
    }
    .btn-register-hero {
      display: inline-block;
      background: var(--navy);
      color: var(--white);
      font-size: 18px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 14px 28px;
      text-decoration: none;
      border: none;
      cursor: pointer;
    }
    .btn-register-hero:hover { background: #FFD100;
    color: #000; }

    /* ── TWO COLUMN BODY ── */
    .page-body {
      display: grid;
      grid-template-columns: 1fr 600px;
      gap: 32px;
      max-width: 1280px;
		width:100%;
      margin: 48px auto 0;
      padding: 0 32px 64px;
      align-items: start;
    }
.content-col {
	 background-color: #F1F1F1;
      padding: 24px;
}
.content-col h2{
	    font-size: 24px;
    line-height: 29px;
    margin-bottom: 14px;
}

    .content-col p {
      font-size: 20px;
      line-height: 1.7;
      color: var(--text-body);
      margin-bottom: 14px;
	 
    }
    .content-col .lead {
      font-weight: 500;
      font-size: 24px;
      color: var(--text-dark);
      margin-bottom: 16px;
	  line-height: 30px;
    }

    .how-to-attend {
      margin-top: 55px;
    }
    .how-to-attend h3 {
      font-family: var(--font-sans);
      font-size: 24px;
      font-weight: 500;
      color: var(--text-dark);
      margin-bottom: 14px;
    }

    .info-card {
      border: 1.5px solid var(--border);
      border-radius: 4px;
      padding: 16px 18px;
      margin-bottom: 10px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
		max-width: 350px;
    width: 100%;
		background:white;
    }
    .info-card-icon {
      flex-shrink: 0;
      width: 20px;
      margin-top: 2px;
      color: var(--navy);
    }
    .info-card-icon svg { width: 18px; height: 18px; }
    .info-card-body { font-size: 13.5px; line-height: 1.55; color: var(--text-body); }
    .info-card-body strong { display: block; font-weight: 500; color: var(--text-dark); margin-bottom: 2px; font-size: 20px; }

    .topic-section { margin-top: 55px; }
    .topic-section h3 {
      font-family: var(--font-sans);
      font-size: 24px;
      font-weight: 500;
      color: var(--text-dark);
      margin-bottom: 4px;
    }
    .topic-section h4 {
      font-size: 20px;
      font-weight: 400;
      color: var(--text-dark);
      margin-bottom: 12px;
    }
    .topic-section ul {
      list-style: none;
      padding: 0;
      margin-bottom: 0;
    }
    .topic-section ul li {
      font-size: 20px;
      line-height: 1.6;
      color: var(--text-body);
      padding-left: 18px;
      position: relative;
      margin-bottom: 7px;
    }
    .topic-section ul li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--text-body);
    }

    .about-section { margin-top: 55px; }
    .about-section h3 {
      font-family: var(--font-sans);
      font-size: 24px;
      font-weight: 500;
      color: var(--text-dark);
      margin-bottom: 14px;
    }
    .speaker-card {
      border: 1.5px solid var(--border);
      border-radius: 4px;
      padding: 18px;
      display: grid;
      grid-template-columns: 180px 1fr;
      gap: 16px;
      align-items: start;
		background:#DCF2FD;
    }
    .speaker-img {
      width: 180px;
      height: 180px;
      object-fit: cover;
      border-radius: 3px;
      display: block;
      background: #ddd;
    }
    /* placeholder photo using a gradient */
    .speaker-img-placeholder {

      height: 180px;
      border-radius: 3px;
      background: linear-gradient(135deg, #b0b8c4 0%, #8a9ab0 100%);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .speaker-img-placeholder svg { width: 44px; height: 44px; color: #fff; opacity: 0.7; }
    .speaker-info .speaker-name {
      font-size: 20px;
      font-weight: 500;
      color: var(--text-dark);
      margin-bottom: 4px;
    }
    .speaker-badge {
      display: inline-block;
      background: #00233D;
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.04em;
      padding: 3px 9px;
      border-radius: 2px;
      margin-bottom: 10px;
    }
    .speaker-info p {
      font-size: 18px;
      line-height: 1.65;
      color: var(--text-body);
    }

    /* ── RIGHT: FORM ── */
    .form-col {
      position: sticky;
      top: 24px;
    }
    .form-card {
      background: var(--navy);
      color: var(--white);
      padding: 32px 28px;
    }
    .form-card h2 {
      font-family: var(--font-serif);
      font-size: 32px;
      font-weight: 400;
      color: var(--gold);
      margin-bottom: 6px;
    }
    .form-card .form-subtitle {
      font-size: 20px;
      color:#fff;
      margin-bottom: 22px;
      line-height: 1.5;
    }
    .form-group { margin-bottom: 14px; }
    .form-group label {
      display: block!important;
      font-size: 18px!important;
      font-weight: 500!important;
      color: var(--white)!important;
      margin-bottom: 5px;
      letter-spacing: 0.01em!important;
    }
    .form-group label .req { color: #e05a5a; margin-left: 2px; }
    .form-group input,
    .form-group select {
      width: 100%!important;
      background: #fff!important;
      border: none!important;
      outline: none!important;
      font-size: 13px!important;
      color: #333!important;
      font-family: var(--font-sans)!important;
      appearance: none!important;
      -webkit-appearance: none!important;
    }
    .form-group input::placeholder { color: #aaa!important; }
    .form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E")!important; background-repeat: no-repeat!important; background-position: right 12px center!important; padding-right: 32px; cursor: pointer!important; color: #aaa!important; }
    .form-group select.filled { color: #333!important; }

    .checkbox-group { margin-bottom: 10px!important; }
    .checkbox-group label {
      display: flex!important;
      align-items: flex-start!important;
      gap: 9px!important;
      font-size: 12.5px!important;
      color: rgba(255,255,255,0.85)!important;
      cursor: pointer!important;
      line-height: 1.5!important;
      font-weight: 400!important;
    }
    .checkbox-group input[type="checkbox"] {
      width: 14px!important;
      height: 14px!important;
      flex-shrink: 0!important;
      margin-top: 2px!important;
      accent-color: var(--gold)!important;
      cursor: pointer!important;
    }

    .terms-text {
      font-size: 11.5px;
      color: rgba(255,255,255,0.7);
      margin: 14px 0 18px;
      line-height: 1.55;
    }
    .terms-text a { color: rgba(255,255,255,0.9); }

    .form-card .gform_button.button {
      width: 100%!important;
      background: var(--gold-btn)!important;
      color: #000!important;
      border: none!important;
      font-size: 18px!important;
      font-weight: 400!important;
      letter-spacing: 0.1em!important;
      text-transform: uppercase!important;
      padding: 15px!important;
      cursor: pointer!important;
      font-family: var(--font-sans)!important;
	max-width: 325px!important;
    margin: auto!important;
    }
	.form-card .gfield_required{
		  padding-left: 3px!important;
		font-size: 16px!important;
		    COLOR: #FFD100 !important;
	}
.form-card .gform_fields {
	row-gap:20px!important;
}
    .form-card .gform_button.button:hover { background: #085479!important; color: #fff!important; }

    /* ── NEWSLETTER STRIP ── */
    .newsletter-strip {
      background: var(--navy);
      padding: 60px 32px;
      text-align: left;
		 max-width: 1280px;
		width:100%;
		margin: 0 auto;
    }
    .newsletter-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: end;
    }
    .newsletter-strip h2 {
      font-family: var(--font-serif);
      font-size: 34px;
      font-weight: 300;
      color: var(--white);
      line-height: 1.25;
      margin-bottom: 12px;
    }
    .newsletter-strip p {
      font-size: 13px;
      color: rgba(255,255,255,0.7);
      line-height: 1.6;
    }
    .newsletter-form-row {
      display: flex;
      gap: 0;
      align-items: stretch;
    }
    .newsletter-form-row label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,0.8);
      margin-bottom: 7px;
    }
    .newsletter-form-row input {
      flex: 1;
      background: #fff;
      border: none;
      padding: 12px 16px;
      font-size: 13px;
      color: #333;
      font-family: var(--font-sans);
      outline: none;
    }
    .newsletter-form-row input::placeholder { color: #aaa; }
    .btn-signup {
      background: var(--gold-btn);
      color: #fff;
      border: none;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 12px 22px;
      cursor: pointer;
      font-family: var(--font-sans);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .btn-signup:hover { background: #b8962e; }
	.form-col .gform_heading{
display:none;
	}

    /* Responsive niceties */
    @media (max-width: 820px) {
      .page-body { grid-template-columns: 1fr; }
      .form-col { position: static; }
      .newsletter-inner { grid-template-columns: 1fr; }
      .event-title { font-size: 30px; }
    }

