@font-face {
    font-family: "Meta Serif";
    src: url(./MetaSerifPro-Book.eot?cc1b4eff05cc);
    src: url(./MetaSerifPro-Book.woff2?cc1b4eff05cc) format("woff2"), url(./MetaSerifPro-Book.woff?cc1b4eff05cc) format("woff"), url(./MetaSerifPro-Book.ttf?cc1b4eff05cc) format("truetype"), url(./MetaSerifPro-Book.eot?&cc1b4eff05cc#iefix) format("embedded-opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


body {
  font-family: "Meta Serif", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #262626;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

* {
  box-sizing: border-box;
}


/* CSS for section section:Header */
.site-header {
  background-color: #262626;
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 20px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  gap: 5px;
  align-items: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-item {
  color: #a4a4a4;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-item-group {
  display: flex;
  align-items: center;
  gap: 1px;
  color: #a4a4a4;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-outline {
  border: 1px solid #e0e0e0; /* Fallback/Guess based on visual, JSON says border 2px solid white but text is white? No, text is usually dark on white bg. JSON style_11 has border white. Let's adjust for visibility */
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.btn-primary {
  background-color: #6ef9ff;
  color: #141414;
}

.menu-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
}

.menu-label {
  font-size: 10px;
  color: #FFFFFF;
}

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

/* CSS for section section:Hero */
.hero-container {
  padding: 0 15px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image-wrapper {
  width: 100%;
  max-width: 896px;
  margin-bottom: 12px;
}

.hero-img {
  width: 100%;
  border-radius: 4px;
}

.hero-caption {
  font-size: 14px;
  color: #262626;
  text-align: center;
  max-width: 662px;
  margin: 0 auto 30px;
}

.main-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: #262626;
  max-width: 896px;
  margin: 0 auto 24px;
  line-height: 1.2;
}

.meta-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 896px;
  font-size: 14px;
  color: #262626;

  padding-bottom: 0;
  margin-bottom: 0;
}

.read-time {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* CSS for section section:Article */
.article-container {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.text-block p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.6;
  color: #262626;
}

.cta-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 0 0;
}

.cta-button {
  background-color: #F15D00;
  color: #ffffff;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 18px;
  text-align: center;
  width: 100%;
  max-width: 100%;
  display: block;
}

.info-block-wrapper {
  margin: 20px auto 0;
  text-align: center;
  width: 100%;
  max-width: 665px;
  color: #262626;

  font-size: 20px;
  

}

.separator-line {
  height: 1px;
  background-color: #a4a4a4;
  width: 100px;
  margin:0 auto 20px;
}

.info-text {
  line-height: 1.6;
  margin-bottom: 0;
}

.article-image-wrapper {
  margin: 20px 0;
}

.article-img {
  width: 100%;
  border-radius: 4px;
}

.quote-block {
  border-left: 4px solid #262626;
  padding-left: 20px;


}

.quote-block blockquote {
  font-size: 18px;
  margin: 0 0 10px 0;
  color: #262626;
}

.quote-block cite {
  font-size: 18px;
  font-weight: 400;
  color: #8A8A8A;
  font-style: normal;
}

.blue-info-box {
  border-radius: 8px;
background: linear-gradient(196deg, #00163D 0.95%, #2574BE 99.89%);
  padding: 32px;
  border-radius: 8px;
  color: #ffffff;
  margin-top: 20px;
}

.blue-info-box h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
font-weight: 500;

}

.blue-info-box .subtitle {
  font-size: 22px;
  margin-bottom: 24px;
font-weight: 500;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps-list li {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
}

.warning-box {
  border: 1px solid #c91c1c;
  border-radius: 8px;
  padding: 24px;
  margin-top: 20px;
}

.warning-title {
  color: #c91c1c;
  font-size: 20px;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.warning-box p {
  margin: 0;
  color: #262626;
  font-size: 16px;
}

/* CSS for section section:Form */
.form-container {
  max-width: 896px;
  margin: 40px auto;
  padding: 0 20px;
}

.form-wrapper {
  border-radius: 20px;
  border: 2px solid #FF6200;
  background: linear-gradient(188deg, #FFF 40.2%, #EEE 100.17%);
  padding: 40px;
  color: #303030;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.form-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-logo {
  max-width: 160px;
}

.form-header h3 {
  font-size: 22px;
  margin: 0;
}

.form-header p {
  font-size: 18px;
  margin: 0;
}

.age-selector {
  display: flex;
  gap: 8px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.age-btn {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  padding: 10px;
  border-radius: 8px;
  font-size: 16px;
  min-width: 100px;
}

.age-btn.active {
  background-color: #53be1d;
  border-color: #53be1d;
}

.form-inputs {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group {
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  color: #262626;
  background-color: #ffffff;
}

.phone-group {
  display: flex;
  gap: 10px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 0 10px;
  align-items: center;
}

.phone-group .form-input {
  border: none;
  padding-left: 0;
}

.flag-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 10px;
  border-right: 1px solid #e0e0e0;
  min-width: 100px;
  color: #a0a5ad;
}

.arrow-down {
  width: 0; 
  height: 0; 
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #a0a5ad;
}

.form-disclaimer {
  font-size: 12px;
  text-align: center;
  opacity: 0.9;
  max-width: 600px;
}

.submit-btn {
  border-radius: 12px;
  border: 1px solid #FF6200;
  background: #FF6200;
  color: #ffffff;
  font-weight: 700;
  padding: 15px 60px;
  border-radius: 8px;
  font-size: 18px;
  width: 100%;
}

.share-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 60px auto;
}

.social-share {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* CSS for section section:Footer */
.site-footer {
  background-color: #262626;
  color: #ffffff;
  padding: 60px 15px;
}

.footer-content {
  padding: 0 20px;
}

.footer-grid {
  display: flex;
width: 100%;
  gap: 40px;
  margin-bottom: 60px;
  justify-content: space-around;
}

.footer-col {
  width: 300px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.8;

}

.footer-col a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;

}

.footer-col.spec a {
  font-weight: 400;
  opacity: 0.8;

}

hr {
  opacity: 0.2;
  margin: 24px 0;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
}

.btn-outline-white {
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
  padding: 8px 24px;
  border-radius: 100px;
  font-weight: 700;
  text-align: center;
  display: block;
  margin-bottom: 20px;
  width: 70%;
}

.mob {
  display: none;
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
  }

  .btn-primary, .menu-trigger {
    display: none;
  }

.hero-container {
  padding: 0 0 20px;
}
.hero-caption {
  padding: 0 15px;

}
.meta-info {
  padding: 0 15px;
}
.main-title {
  padding: 0 15px;
  font-size: 32px;
}

.text-block p, .cta-wrapper {
  margin-top: 0;
}
.article-container {
  gap: 15px;
  padding: 0 15px;
}

.blue-info-box, .form-wrapper {
  padding: 30px 15px;
}
.form-disclaimer {
  margin: 0;
}


.mob-nav {
  width: 100%;

  padding: 15px;
  background: #fff;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.20);
display: flex;
align-items: center;
justify-content: space-between;
position: fixed;
left: 0;
bottom: 0;
z-index: 100;

}

.mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
color: #595959;
  font-size: 10px;
  text-transform: uppercase;
}

}