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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #262626;
}

/* Header Styles */
header {
    background-color: #B3A369;
}

.gt-banner {
  max-width: 1110px;
  height: 72px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
}


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


.banner-logo img {
  display: block;
}

/* Title */
.ld-title {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  padding-top: 16px;
}

.ld-title p {
  font-size: 30px;
  font-weight: 500;
}


/* Navigation Styles */
.nav-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 0%;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}


nav ul li a,
.nav-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.1s ease;
}

nav ul li a {
    padding: 0 2px;
    color: #262626;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: text-shadow 0.3s ease;
}

.nav-icon-btn {
    background-color: #8b7c4f;
    border: none;
    cursor: pointer;
    background-color: #B3A369;
}
.nav-icon-btn svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    stroke-width: 2;
    fill: none;
    margin-top: 1px;
    
}

nav ul li a:hover,
.nav-icon-btn:hover {
    text-decoration: underline;
    text-decoration-color: #B3A369;
    text-underline-offset: 7px;
    text-decoration-thickness: 2px;
    transition-delay: 0.1s;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
}

.nav-icon-btn:hover svg {
  background-color: none;
    stroke: white;
}


.nav-row {
    display: flex;
    align-items: center;
}

.nav-actions {
    margin-left: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}


.nav-actions {
    display: flex;
    gap: 20px;
}


.nav-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.nav-icon-btn svg {
    width: 20px;
    height: 20px;
    stroke: #262626;
    stroke-width: 2;
    fill: none;
}

.nav-icon-btn:hover {
    border-bottom-color: #B3A369;
}

.nav-icon-btn:hover svg {
    stroke: #B3A369;
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* Hero Banner Styles */
.hero-banner {
  margin-top: 40px;
  display: flex;
  width: 100%;
  height: 270px;
  background-color: #003057;
  color: #ffffff;
}



.hero-text {
  flex: 1;
  padding: 40px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.hero-subtitle {
  font-family: "Courier New", monospace;
  font-size: 30px;
  margin-bottom: 1px;
  opacity: 0.9;
}

.hero-title {
    font-family: Georgia, serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
}

.hero-image {
  flex: 1;
  height: 100%;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-banner {
    flex-direction: column;
    height: 230px;
  }

  .hero-text {
    padding: 40px 30px;
    align-items: flex-start;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-image {
    height: 200px;
  }
}


/* Main Content Styles */
.main-content { 
    max-width: 1120px; 
    margin: 0 auto; 
    padding: 0 24px 24px; 
}

h1 {
    font-size: 36px;
    font-family: 'Georgia', serif;
    color: #003057;
    margin-bottom: 20px;
    font-weight: 700;
}


p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.75;
}


/* Call to Action Button */
.cta-helper {
    font-size: 16px;
    margin-bottom: 14px;
    color: #262626;
}

.cta-link {
    color: #1a73e8;
    text-decoration: underline;
    font-weight: 500;
}

.cta-primary {
    display: inline-block;
    background-color: #003057;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: underline;
    transition: background-color 0.2s ease;
}

.cta-primary:hover {
    background-color: #002341;
}


/* Types of Training Card Info Tabs */
.training-types {
  margin: 60px 0;
}

.training-types h2 {
  font-size: 36px;
  font-weight: 700;
  color: #003057;
  margin-bottom: 18px;
}

.tab-card {
  border: 1px solid #d9d9d9;
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
}


.tabs {
  display: flex;
  background: #f5f5f5;
  border-bottom: 1px solid #d9d9d9;
  padding-left: 6px;
}


.tab-btn {
  background: #f5f5f5;
  border: none;
  border-right: 1px solid #d9d9d9;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #8b7c4f;
  cursor: pointer;
  position: relative;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.tab-btn:last-child {
  border-right: none;
}

.tab-btn.active {
  background: #ffffff;
  color: #b3a369;
  border-bottom: 1px solid #ffffff;
  z-index: 2;
}

.tab-btn:not(.active):hover {
  background: #eeeeee;
}

/* Content area */

.tab-content {
  display: none;
  padding: 28px 32px 32px;
  font-size: 16px;
  line-height: 1.7;
  color: #262626;
}

.tab-content.active {
  display: block;
}

.tab-content p {
  margin-bottom: 18px;
}

.tab-content ul,
.tab-content ol {
  margin-left: 22px;
  margin-bottom: 18px;
}

.tab-content li {
  margin-bottom: 10px;
}

.tab-content h4 {
  margin-top: 26px;
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 700;
  color: #262626;
}

.tab-content a {
  color: #1a73e8;
  text-decoration: underline;
}

/* Approval Image Process */
.approval-process {
  margin: 80px 0 60px;
}

.approval-process h2 {
  font-size: 36px;
  font-weight: 700;
  color: #003057;
  margin-bottom: 32px;
}

.process-image {
  width: 100%;
  overflow-x: auto;
}

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

/* Additonal Resources banner*/
.resources-faq {
  background: #eef0f6;
  padding-bottom: 80px;
}

.resources-hero {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  min-height: 260px;
}

.resources-hero-text {
  background: #0b3558;
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 60px 100px;
}

.resources-hero-text h2 {
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
}

.resources-hero-image {
  background: #ddd;
}

.resources-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQs */
.faq-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px 0;
}

.section-divider {
  display: block;
  width: 350px;
  height: 2px;
  background: #988956;
  margin-bottom: 24px;
}

.faq-title {
  font-size: 32px;
  font-weight: 700;
  color: #003057;
  margin-bottom: 30px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #d8d8d8;
  padding: 22px 24px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  color: #000000;
}

.faq-icon {
  font-size: 18px;
  color: #b3a369;
  margin-left: 16px;
}

h3 {
    color: #003057;
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
}

ul.criteria-list {
    margin-left: 40px;
    margin-bottom: 20px;
}

ul.criteria-list li {
    margin-bottom: 10px;
}


/* Footer Styles */
footer {
    background-color: #B3A369;
    color: #1a1a1a;
    padding: 32px 20px;
    border-top: 18px solid #D6C89E;
    font-size: 13px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.6;
    margin-top: 6px;
    color: #1a1a1a;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}
.contact-icon {
    width: 16px;
    height: 16px;
    fill: #1a1a1a;
    flex-shrink: 0;
    margin-top: 1px;
    opacity: 0.9;
}

.gt-login-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: underline;
    cursor: pointer;
}

.gt-login-link:hover {
    text-decoration: underline;
}

.gt-login-icon {
    width: 14px;
    height: 14px;
    stroke: #1a1a1a;
    stroke-width: 2;
    fill: none;
    margin-top: 1px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

footer h4 {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

footer p {
  font-size: 13px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 6px;
}

footer a:link,
footer a:visited,
footer a:hover,
footer a:active {
  color: rgb(20, 20, 20);
  text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.vertical-line {
    border-left: 2px solid rgba(255, 255, 255, 0.45);
    padding-left: 24px;
}

.footer-logo {
    margin-top: 30px;
}

#trademark {
    font-size: 15px;
    margin-top: 5px;
}

#login-link {
    display: inline-block;
    margin-top: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: underline;
    cursor: pointer;
}
