/* Start custom CSS */:root {
    --navy: #0a1628;
    --blue: #1a5f9e;
    --blue-light: #2272c3;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --cream: #faf8f4;
    --white: #ffffff;
    --gray: #f4f2ee;
    --text: #1e2433;
    --text-light: #5a6278;
    --border: #e2ddd4;
  }
  .hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3560 60%, #1a5f9e 100%);
    padding: 80px 40px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 60%);
     pointer-events: none;
  }

  .hero-badge {
    display: inline-block;
    background: rgba(201,168,76,0.2);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: 0.2em;
    padding: 6px 18px;
    border-radius: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-weight: 600;
  }

  .hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    color: var(--white);
    line-height: 1.15;
    max-width: 800px;
    margin: 0 auto 20px;
    font-weight: 600;
  }

  .hero h1 em {
    color: var(--gold-light);
    font-style: italic;
  }

  .hero-meta {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    margin-bottom: 32px;
    letter-spacing: 0.06em;
  }

  .hero-intro {
    color: rgba(255,255,255,0.85);
    max-width: 640px;
    margin: 0 auto 36px;
    font-size: 17px;
    line-height: 1.75;
  }

  .btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s;
    border: 2px solid var(--gold);
  }

  .btn-primary:hover {
    background: transparent;
    color: var(--gold-light);
  }
  .container {
    margin: 0 auto;
    padding: 0 24px;
  }

  .content-wrap {
    background: var(--white);
    margin: 0 auto;
       padding: 40px 24px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.06);
  }
    @media (min-width:450px){
	 .content-wrap{
	  padding: 60px 64px; 
     }		 
		
	}		
  .stats-bar {
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  @media (min-width:450px){
	.stats-bar {
      grid-template-columns: repeat(3, 1fr);
    }
  } 
  .stat {
    padding: 28px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
  }

  .stat:last-child { border-right: none; }

  .stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--gold-light);
    font-weight: 600;
    line-height: 1;
    display: block;
  }

  .stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 6px;
    display: block;
  }

  /* CONTENT TYPOGRAPHY */
  .content-wrap h2 {
    font-size: 32px;
    color: var(--blue);
    margin: 48px 0 16px;
    font-weight: 600;
    line-height: 1.2;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
  }

  .content-wrap h2:first-child { margin-top: 0; }

  .content-wrap p {
    color: var(--text);
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.8;
  }

  .content-wrap ul {
    margin: 16px 0 24px 0;
    padding: 0;
    list-style: none;
  }

  .content-wrap ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text);
    font-size: 15px;
    border-bottom: 1px solid var(--border);
  }

  .content-wrap ul li:last-child { border-bottom: none; }

  .content-wrap ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 10px;
    top: 12px;
  }

  /* INLINE CTA */
  .inline-cta {
    background: linear-gradient(135deg, var(--navy), #1a3560);
    border-left: 4px solid var(--gold);
    padding: 28px 32px;
    margin: 36px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: 0 4px 4px 0;
  }
   @media (max-width:599.95px){
	   .inline-cta {
		  flex-direction:column; 
	   }   
   }   
  .inline-cta p {
    color: var(--white) !important;
    margin: 0 !important;
    font-size: 15px !important;
    font-weight: 500;
  }

  .inline-cta p strong { color: var(--gold-light); }

  .btn-cta-sm {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 11px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-decoration: none;
    white-space: nowrap;
    text-transform: uppercase;
    flex-shrink: 0;
    transition: all 0.2s;
  }

  .btn-cta-sm:hover { background: var(--gold-light); }

  /* PREP GRID */
  .prep-grid {
    display: grid;
    grid-template-columns:1fr;
    gap: 16px;
    margin: 24px 0;
  }
  @media (min-width:430px){
	 .prep-grid {
    grid-template-columns: repeat(2, 1fr); 
    }
  }  
  .prep-card {
    background: var(--gray);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 4px;
    border-top: 3px solid var(--blue);
  }

  .prep-card .icon {
    font-size: 22px;
    margin-bottom: 8px;
    display: block;
  }

  .prep-card strong {
    display: block;
    font-size: 13px;
    color: var(--navy);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 700;
  }

  .prep-card p {
    font-size: 13px !important;
    color: var(--text-light) !important;
    margin: 0 !important;
    line-height: 1.5 !important;
  }
 .img-section img{border-radius: 8px;}
  .img-section figcaption{text-align: center;padding-top:5px;font-size:14px;}
  .celebrity-block {
    background: var(--cream);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    padding: 28px 32px;
    margin: 32px 0;
    border-radius: 0 4px 4px 0;
    font-style: italic;
    position: relative;
  }

  .celebrity-block::before {
    content: '"';
    font-size: 80px;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
  }

  .celebrity-block p {
    color: var(--text) !important;
    font-size: 17px !important;
    margin: 0 !important;
    padding-left: 20px;
  }

  .celebrity-block cite {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 12px;
    padding-left: 20px;
    font-style: normal;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* FAQ */
  .faq-section { margin: 48px 0 0; }

  .faq-item {
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
  }

  .faq-q {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 18px 24px;
    text-align: left;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
	letter-spacing:normal;
	text-transform:none;
	line-height:1.3;
  }

  .faq-q:hover { background: var(--gray); }

  .faq-q.active { background: var(--navy); color: var(--white); }

  .faq-q .chevron {
    font-size: 18px;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 12px;
    color: var(--gold);
  }

  .faq-q.active .chevron { transform: rotate(180deg); }

  .faq-a {
    display: none;
    padding: 20px 24px;
    background: var(--gray);
    font-size: 15px;
    color: var(--text);
    line-height: 1.75;
    border-top: 1px solid var(--border);
  }

  .faq-a.open { display: block; }

  /* BANNER CTA */
  .banner-cta {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3560 100%);
    padding: 56px 40px;
    text-align: center;
    margin-top: 0;
  }

  .banner-cta h3 {
     font-size: 38px;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 600;
  }

  .banner-cta p {
    color: rgba(255,255,255,0.65);
    margin-bottom: 32px;
    font-size: 15px;
  }

  .btn-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-outline {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    padding: 13px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.2s;
    text-transform: uppercase;
  }

  .btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
  .disclaimer {
    background: var(--gray);
    padding: 24px 40px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
  }

  .disclaimer p {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
  }

  .disclaimer strong {
    color: var(--text);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }/* End custom CSS */