:root {
  --ocean-blue: #003566;
  --seafoam-light: #e6eaf0;
  --midnight-navy: #002346;
  --forest-sage: #4a6741;
  --sage-whisper: #e8f2e5;
  --sunset-amber: #d4771f;
  --amber-glow: #fff2e6;
  --crimson-touch: #c73e1d;
  --crimson-mist: #fdeee9;
  --charcoal-gray: #5a5d67;
  --silver-haze: #f8f9fa;
  --info-teal: #17a2b8;
  --warning-gold: #ffc107;
  --success-green: #28a745;
}

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

body {
  font-family: "Lato", Arial, sans-serif;
  background: #fff;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  color: var(--charcoal-gray);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 21px;
}

@media (max-width: 890px) {
  .container {
    padding: 0 13px;
  }
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: var(--midnight-navy);
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: 42px; }
h2 { font-size: 34px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 21px; }
h6 { font-size: 18px; }

@media (max-width: 640px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 22px; }
}

.main_menu {
  position: relative;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.08);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 21px 0;
  position: relative;
}

.navbar-brand img {
  height: 47px;
  width: auto;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
}

.hamburger {
  width: 30px;
  height: 3px;
  background: var(--midnight-navy);
  position: relative;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger:before,
.hamburger:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background: var(--midnight-navy);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger:before {
  top: -8px;
}

.hamburger:after {
  top: 8px;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 34px;
}

.navbar-nav {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  list-style: none;
}

.nav-link {
  color: var(--midnight-navy);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--ocean-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--forest-sage);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

@media screen and (max-width: 890px) {
  .nav-toggle-label {
    display: block;
    cursor: pointer;
    padding: 15px;
    z-index: 2;
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding-top: 89px;
    flex-direction: column;
    align-items: center;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0;
  }

  .nav-item {
    width: 100%;
    text-align: center;
    margin: 18px 0;
  }

  .nav-link {
    display: inline-block;
    padding: 13px 21px;
    font-size: 19px;
    color: var(--midnight-navy);
  }

  .nav-toggle:checked ~ .nav-wrapper {
    left: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label .hamburger {
    background: transparent;
  }

  .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
    transform: rotate(45deg);
    top: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
    transform: rotate(-45deg);
    top: 0;
  }
}

.hero-wrap {
  width: 100%;
  height: 100vh;
  min-height: 640px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
}

.hero-wrap .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 53, 102, 0.7), rgba(74, 103, 65, 0.5));
  z-index: 1;
}

.hero-wrap .container {
  position: relative;
  z-index: 2;
}

.slider-text {
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.slider-text h1 {
  font-size: 54px;
  color: #fff;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slider-text .subheading {
  font-size: 19px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.slider-text p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 540px;
}

@media (max-width: 890px) {
  .slider-text h1 {
    font-size: 38px;
  }
  
  .slider-text .subheading {
    font-size: 16px;
  }
  
  .slider-text p {
    font-size: 16px;
  }
}

.btn {
  padding: 15px 28px;
  cursor: pointer;
  border-radius: 34px;
  box-shadow: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid transparent;
}

.btn:hover, .btn:active, .btn:focus {
  outline: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--forest-sage);
  border-color: var(--forest-sage);
  color: #fff;
}

.btn-primary:hover {
  background: transparent;
  border-color: var(--forest-sage);
  color: var(--forest-sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 103, 65, 0.3);
}

.btn-lg {
  padding: 18px 34px;
  font-size: 16px;
}

.ftco-section {
  padding: 97px 0;
  position: relative;
}

@media (max-width: 890px) {
  .ftco-section {
    padding: 67px 0;
  }
}

.heading-section .subheading {
  font-size: 13px;
  display: block;
  font-weight: 600;
  color: var(--forest-sage);
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 16px;
}

.heading-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .heading-section h2 {
    font-size: 28px;
  }
}

.ftco-animate {
  opacity: 1;
  visibility: visible;
}

.text-center {
  text-align: center;
}

.site-section {
  padding: 89px 0;
  position: relative;
}

@media (max-width: 890px) {
  .site-section {
    padding: 55px 0;
  }
}

.img-experience {
  position: relative;
  display: block;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.img-experience img {
  transition: transform 0.4s ease;
}

.img-experience:hover img {
  transform: scale(1.05);
}

.img-experience .year-badge {
  width: 134px;
  height: 134px;
  border-radius: 50%;
  background: var(--crimson-touch);
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
  box-shadow: 0 8px 25px rgba(199, 62, 29, 0.3);
}

@media (max-width: 890px) {
  .img-experience .year-badge {
    position: relative;
    transform: translate(0%, 0%);
    margin: -34px auto 0 auto;
  }
}

.img-experience .year-badge > span {
  width: 100%;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 2.8rem;
  display: block;
  line-height: 1;
  transform: translate(-50%, -50%);
  font-weight: 700;
}

.img-experience .year-badge > span > span {
  line-height: 1.2;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
}

.scissors-icon {
  position: relative;
  padding-bottom: 34px;
  margin-bottom: 34px;
  font-size: 2.8rem;
  color: var(--crimson-touch);
}

@media (max-width: 890px) {
  .scissors-icon {
    font-size: 2.2rem;
  }
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-md-6, .col-lg-3, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-12,
.col-md-7, .col-md-8, .col-md-12, .col-12 {
  padding: 0 15px;
}

.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-md-6 { flex: 0 0 100%; max-width: 100%; }
.col-md-7 { flex: 0 0 100%; max-width: 100%; }
.col-md-8 { flex: 0 0 100%; max-width: 100%; }
.col-md-12 { flex: 0 0 100%; max-width: 100%; }
.col-lg-3 { flex: 0 0 100%; max-width: 100%; }
.col-lg-5 { flex: 0 0 100%; max-width: 100%; }
.col-lg-6 { flex: 0 0 100%; max-width: 100%; }
.col-lg-7 { flex: 0 0 100%; max-width: 100%; }
.col-lg-8 { flex: 0 0 100%; max-width: 100%; }
.col-lg-12 { flex: 0 0 100%; max-width: 100%; }

@media (min-width: 640px) {
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 1280px) {
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }

@media (max-width: 890px) {
  .mb-md-0 { margin-bottom: 0; }
  .pl-md-4 { padding-left: 0; }
}

@media (min-width: 891px) {
  .pl-md-4 { padding-left: 2.5rem; }
  .pl-lg-5 { padding-left: 3rem; }
  .ml-auto { margin-left: auto; }
}

.course-1-item {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  border-radius: 13px;
  overflow: hidden;
  margin-bottom: 34px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-1-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
}

.course-1-item figure {
  position: relative;
  margin: 0;
}

.course-1-item .category {
  background: var(--forest-sage);
  padding: 24px;
  border-radius: 0 0 13px 13px;
}

.course-1-item .category h3 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 0;
  font-weight: 600;
}

.course-1-item .price {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(-100%);
  padding: 13px 24px;
  background: var(--ocean-blue);
  color: #fff;
  border-radius: 8px 0 0 0;
  font-weight: 600;
  font-size: 14px;
}

.course-1-item .course-1-content {
  padding: 28px 34px;
  text-align: center;
}

.course-1-item .course-1-content h2 {
  margin: 0 0 21px 0;
  font-size: 21px;
  color: var(--midnight-navy);
  line-height: 1.4;
}

.course-1-item .course-1-content .rating {
  text-align: center;
  margin-bottom: 18px;
}

.course-1-item .course-1-content .rating > span {
  display: inline-block;
  margin: 0 2px;
  color: var(--sunset-amber);
  font-size: 16px;
}

.course-1-item .course-1-content .desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal-gray);
}

.section-title-underline {
  color: var(--midnight-navy);
}

.section-title-underline span {
  display: inline-block;
  border-bottom: 5px solid var(--forest-sage);
  padding-bottom: 8px;
}

.content-image-section {
  padding: 89px 0;
  background: var(--seafoam-light);
}

.text-block {
  padding-right: 34px;
}

@media (max-width: 890px) {
  .text-block {
    padding-right: 0;
    margin-bottom: 34px;
  }
}

.section-heading {
  font-size: 34px;
  font-weight: 700;
  color: var(--midnight-navy);
  margin-bottom: 28px;
}

.section-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal-gray);
  margin-bottom: 21px;
}

.image-block {
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.image-block img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.image-block:hover img {
  transform: scale(1.08);
}

.action-button {
  display: inline-block;
  border: 2px solid var(--forest-sage);
  border-radius: 34px;
  font-weight: 600;
  padding: 13px 34px;
  background: var(--forest-sage);
  color: #fff;
  margin-top: 21px;
  transition: all 0.4s ease;
  text-decoration: none;
}

.action-button:hover {
  border-color: var(--forest-sage);
  background: transparent;
  color: var(--forest-sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 103, 65, 0.25);
}

.main-section {
  padding: 67px 0;
}

@media (min-width: 890px) {
  .main-section {
    padding: 89px 0;
  }
}

.font-weight-heavy {
  font-weight: 800;
}

.lead-text {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal-gray);
  margin-bottom: 21px;
}

.img-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 13px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.btn-main {
  color: #fff;
  background-color: var(--ocean-blue);
  border: 2px solid var(--ocean-blue);
  padding: 13px 28px;
  border-radius: 34px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-main:hover {
  color: var(--ocean-blue);
  background-color: transparent;
  border-color: var(--ocean-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 53, 102, 0.25);
}

.feature-list {
  padding: 89px 0;
  background: var(--silver-haze);
}

.feature-list h2 {
  font-size: 28px;
  margin-bottom: 34px;
  text-transform: capitalize;
  transition: all 0.3s ease;
  color: var(--midnight-navy);
}

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

.feature-list li {
  margin-bottom: 16px;
  color: var(--charcoal-gray);
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  position: relative;
  padding-left: 24px;
}

.feature-list li:before {
  content: "●";
  color: var(--forest-sage);
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 0;
}

.twenty-one {
  font-size: 28px;
}

@media (max-width: 890px) {
  .feature-list {
    padding: 55px 0;
  }
}

.text-section {
  background: var(--midnight-navy);
  padding: 97px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 55px;
}

.section-title h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 21px;
  text-transform: uppercase;
}

.section-title p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  font-size: 18px;
}

.text-content p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.8;
  font-size: 17px;
}

.text-content p:last-child {
  margin-bottom: 0;
}

.spad {
  padding-top: 97px;
  padding-bottom: 97px;
}

@media (max-width: 890px) {
  .text-section {
    padding: 67px 0;
  }
  
  .spad {
    padding-top: 67px;
    padding-bottom: 67px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
}

.contact-cta-section {
  padding: 89px 0;
  background: linear-gradient(135deg, var(--seafoam-light), #f8f9fa);
}

.contact-cta-section h2 {
  margin-bottom: 24px;
  color: var(--midnight-navy);
}

.contact-cta-section .lead {
  margin-bottom: 34px;
  color: var(--charcoal-gray);
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 55px;
  margin: 34px 0;
}

@media (max-width: 640px) {
  .contact-info {
    flex-direction: column;
    gap: 28px;
  }
}

.contact-item h4 {
  color: var(--midnight-navy);
  margin-bottom: 8px;
  font-size: 18px;
}

.contact-item p {
  color: var(--charcoal-gray);
  margin-bottom: 0;
}

.contact-item a {
  color: var(--forest-sage);
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  color: var(--ocean-blue);
}

.blog-section {
  padding: 89px 0;
  background: #fff;
}

.blog-entry {
  background: #fff;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 34px;
}

.blog-entry:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.blog-img {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-entry:hover .blog-img img {
  transform: scale(1.1);
}

.blog-img .read-time {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(5px);
}

.blog-content {
  padding: 28px 24px;
}

.blog-content h3 {
  margin-bottom: 16px;
  font-size: 22px;
  line-height: 1.3;
}

.blog-content h3 a {
  color: var(--midnight-navy);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-content h3 a:hover {
  color: var(--forest-sage);
}

.blog-content .meta {
  display: flex;
  gap: 21px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--charcoal-gray);
}

.blog-content .meta .date {
  position: relative;
}

.blog-content .meta .date:after {
  content: '•';
  position: absolute;
  right: -13px;
  color: var(--forest-sage);
}

.blog-content .meta .category {
  color: var(--forest-sage);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-content p {
  margin-bottom: 21px;
  line-height: 1.6;
  color: var(--charcoal-gray);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--forest-sage);
  color: var(--forest-sage);
}

.btn-outline:hover {
  background: var(--forest-sage);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 103, 65, 0.25);
}

@media (max-width: 890px) {
  .blog-section {
    padding: 67px 0;
  }
  
  .blog-img {
    height: 200px;
  }
  
  .blog-content {
    padding: 21px 18px;
  }
  
  .blog-content h3 {
    font-size: 19px;
  }
  
  .blog-content .meta {
    flex-direction: column;
    gap: 5px;
  }
  
  .blog-content .meta .date:after {
    display: none;
  }
}

.help-resources-section {
  padding: 55px 0;
  background: var(--amber-glow);
  border-top: 3px solid var(--sunset-amber);
}

.help-resources-section h3 {
  color: var(--midnight-navy);
  margin-bottom: 21px;
}

.help-resources-section p {
  margin-bottom: 13px;
  color: var(--charcoal-gray);
}

.help-resources-section a {
  color: var(--forest-sage);
  font-weight: 600;
  text-decoration: none;
}

.help-resources-section a:hover {
  color: var(--ocean-blue);
  text-decoration: underline;
}

.footer {
  background: var(--midnight-navy);
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 67px 0 34px;
}

.footer a {
  color: var(--forest-sage);
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
}

.footer .copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-top: 34px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-heading {
  font-size: 21px;
  margin-bottom: 28px;
  color: #fff;
  position: relative;
  font-weight: 700;
}

.footer .footer-heading:after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: '';
  width: 34px;
  height: 3px;
  background: var(--forest-sage);
}

.footer ul.list-unstyled {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul.list-unstyled li a {
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 0;
  display: block;
  transition: color 0.3s ease;
}

.footer ul.list-unstyled li a:hover {
  color: #fff;
}

.footer .block-23 ul {
  padding: 0;
  list-style: none;
}

.footer .block-23 ul li {
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.footer .block-23 ul li .icon {
  width: 34px;
  font-size: 16px;
  padding-top: 3px;
  color: var(--forest-sage);
  margin-right: 13px;
}

.footer .block-23 ul li .text {
  flex: 1;
}

.footer .block-23 ul li a {
  color: rgba(255, 255, 255, 0.7);
}

.footer .block-23 ul li a:hover {
  color: #fff;
}

.d-block {
  display: block;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
}

@media (max-width: 640px) {
  .footer {
    padding: 45px 0 28px;
  }
  
  .footer .footer-heading {
    font-size: 18px;
    margin-bottom: 21px;
  }
}

.scroll-smooth {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

.js-fullheight {
  height: 100vh;
}

@media (max-width: 640px) {
  .js-fullheight {
    height: 80vh;
    min-height: 500px;
  }
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.justify-content-start {
  justify-content: flex-start;
}

.align-items-center {
  align-items: center;
}

.text-warning {
  color: var(--sunset-amber);
}

.mr-md-4 {
  margin-right: 1.5rem;
}

.px-4 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.rounded-0 {
  border-radius: 0;
}

.owl-slide-3,
.owl-carousel {
  display: block;
}

.owl-slide-3 .owl-stage {
  padding-top: 21px;
  padding-bottom: 21px;
}

@media (min-width: 890px) {
  .owl-slide-3 {
    display: flex;
    gap: 28px;
  }
  
  .course-1-item {
    flex: 1;
    min-width: 0;
  }
}

.fa:before,
.icon:before {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}

.fa-map-marker:before,
.icon.fa.fa-map-marker:before {
  content: "->";
}

.fa-phone:before,
.icon.fa.fa-phone:before {
  content: "->";
}

.fa-paper-plane:before,
.icon.fa.fa-paper-plane:before {
  content: "->";
}

.hero-wrap-2 {
  height: 400px;
}

.hero-wrap-2 .overlay {
  opacity: 0.4;
}

.hero-wrap-2 .slider-text {
  height: 400px;
}

.bread {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}

.breadcrumbs {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #fff;
}

.article-section {
  padding: 89px 0;
}

.article-meta {
  margin-bottom: 34px;
  padding-bottom: 21px;
  border-bottom: 1px solid #e9ecef;
}

.meta-info {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.meta-info span {
  font-size: 14px;
  color: var(--charcoal-gray);
  font-weight: 500;
}

.meta-info .date {
  color: var(--forest-sage);
}

.meta-info .category {
  color: var(--ocean-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-info .read-time {
  color: var(--sunset-amber);
}

.article-content {
  line-height: 1.8;
  color: var(--charcoal-gray);
}

.article-content .featured-image {
  margin-bottom: 34px;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.article-content .featured-image img {
  width: 100%;
  height: auto;
}

.article-content h2 {
  margin: 34px 0 21px 0;
  color: var(--midnight-navy);
  font-size: 28px;
  line-height: 1.3;
}

.article-content h3 {
  margin: 28px 0 18px 0;
  color: var(--midnight-navy);
  font-size: 24px;
  line-height: 1.3;
}

.article-content h4 {
  margin: 24px 0 16px 0;
  color: var(--midnight-navy);
  font-size: 21px;
  line-height: 1.3;
}

.article-content h5 {
  margin: 21px 0 13px 0;
  color: var(--midnight-navy);
  font-size: 18px;
  line-height: 1.3;
}

.article-content p {
  margin-bottom: 21px;
  font-size: 17px;
  line-height: 1.7;
}

.article-content ul {
  margin-bottom: 21px;
  padding-left: 28px;
}

.article-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.quote-block {
  background: var(--seafoam-light);
  border-left: 5px solid var(--forest-sage);
  padding: 24px 28px;
  margin: 34px 0;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--midnight-navy);
  border-radius: 0 8px 8px 0;
}

.highlight-box {
  background: linear-gradient(135deg, var(--sage-whisper), var(--seafoam-light));
  padding: 28px;
  margin: 34px 0;
  border-radius: 13px;
  border: 1px solid rgba(74, 103, 65, 0.2);
}

.highlight-box h4 {
  color: var(--forest-sage);
  margin-bottom: 18px;
  font-size: 19px;
}

.highlight-box ul {
  margin-bottom: 0;
}

.highlight-box li {
  color: var(--midnight-navy);
  margin-bottom: 8px;
}

.info-box {
  background: linear-gradient(135deg, #e6f3ff, var(--seafoam-light));
  padding: 28px;
  margin: 34px 0;
  border-radius: 13px;
  border: 1px solid rgba(0, 53, 102, 0.2);
}

.info-box h5 {
  color: var(--ocean-blue);
  margin-bottom: 18px;
  font-size: 18px;
}

.info-box ul {
  margin-bottom: 0;
}

.info-box li {
  color: var(--midnight-navy);
  margin-bottom: 8px;
}

.warning-box {
  background: linear-gradient(135deg, var(--amber-glow), #fff2e6);
  padding: 28px;
  margin: 34px 0;
  border-radius: 13px;
  border: 1px solid rgba(212, 119, 31, 0.3);
}

.warning-box h5 {
  color: var(--sunset-amber);
  margin-bottom: 18px;
  font-size: 18px;
}

.warning-box ul {
  margin-bottom: 0;
}

.warning-box li {
  color: var(--midnight-navy);
  margin-bottom: 8px;
}

.call-to-action-box {
  background: linear-gradient(135deg, var(--forest-sage), var(--ocean-blue));
  color: #fff;
  padding: 34px;
  margin: 44px 0;
  border-radius: 13px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 53, 102, 0.25);
}

.call-to-action-box h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 24px;
}

.call-to-action-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  font-size: 16px;
}

.call-to-action-box .btn {
  background: #fff;
  color: var(--forest-sage);
  border: 2px solid #fff;
}

.call-to-action-box .btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.article-footer {
  margin-top: 55px;
  padding-top: 34px;
  border-top: 2px solid #e9ecef;
}

.share-section h5 {
  color: var(--midnight-navy);
  margin-bottom: 18px;
  font-size: 18px;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
}

.related-links a {
  color: var(--forest-sage);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--forest-sage);
  border-radius: 21px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.related-links a:hover {
  background: var(--forest-sage);
  color: #fff;
}

@media (max-width: 890px) {
  .article-section {
    padding: 67px 0;
  }
  
  .bread {
    font-size: 32px;
  }
  
  .breadcrumbs {
    font-size: 14px;
  }
  
  .meta-info {
    gap: 16px;
  }
  
  .article-content h2 {
    font-size: 24px;
  }
  
  .article-content h3 {
    font-size: 21px;
  }
  
  .article-content h4 {
    font-size: 19px;
  }
  
  .article-content p {
    font-size: 16px;
  }
  
  .quote-block {
    padding: 18px 21px;
    font-size: 16px;
  }
  
  .highlight-box,
  .info-box,
  .warning-box {
    padding: 21px;
  }
  
  .call-to-action-box {
    padding: 28px 21px;
  }
  
  .related-links {
    flex-direction: column;
    gap: 13px;
  }
  
  .related-links a {
    text-align: center;
  }
}

.contact-main-section {
  padding: 89px 0;
  background: linear-gradient(135deg, var(--seafoam-light), #f8f9fa);
}

.contact-header {
  margin-bottom: 55px;
}

.contact-header h2 {
  color: var(--midnight-navy);
  margin-bottom: 21px;
  font-size: 32px;
}

.contact-header .lead {
  color: var(--charcoal-gray);
  font-size: 18px;
}

.contact-form-wrapper {
  background: #fff;
  padding: 44px;
  border-radius: 18px;
  box-shadow: 0 15px 55px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form {
  position: relative;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 21px;
  }
}

.form-group {
  position: relative;
  margin-bottom: 34px;
}

.form-label {
  display: block;
  color: var(--midnight-navy);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-bottom: 2px solid #e9ecef;
  background: transparent;
  font-size: 16px;
  color: var(--midnight-navy);
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}

.form-control:focus {
  border-bottom-color: var(--forest-sage);
}

.form-control:focus + .form-focus-line {
  transform: scaleX(1);
}

.form-control::placeholder {
  color: var(--charcoal-gray);
  opacity: 0.7;
}

.form-focus-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--forest-sage), var(--ocean-blue));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  padding-top: 16px;
}

.form-submit {
  text-align: center;
  margin-top: 34px;
}

.btn-submit {
  padding: 18px 44px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--forest-sage), var(--ocean-blue));
  border: none;
  border-radius: 34px;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(74, 103, 65, 0.3);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(74, 103, 65, 0.4);
}

.form-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--charcoal-gray);
  font-style: italic;
}

.contact-info-section {
  padding: 67px 0;
  background: #fff;
}

.contact-info-card {
  text-align: center;
  padding: 34px 21px;
  margin-bottom: 28px;
}

.info-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--forest-sage), var(--ocean-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 24px;
  color: #fff;
}

.icon-marker::before { content: ""; }
.icon-phone::before { content: ""; }
.icon-clock::before { content: ""; }

.contact-info-card h4 {
  color: var(--midnight-navy);
  margin-bottom: 16px;
  font-size: 20px;
}

.contact-info-card p {
  color: var(--charcoal-gray);
  margin-bottom: 8px;
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--forest-sage);
  text-decoration: none;
  font-weight: 600;
}

.contact-info-card a:hover {
  color: var(--ocean-blue);
}

.info-note {
  font-size: 13px;
  color: var(--charcoal-gray);
  font-style: italic;
}

.about-contact-section {
  padding: 89px 0;
  background: var(--seafoam-light);
}

.about-contact-content h3 {
  color: var(--midnight-navy);
  margin-bottom: 24px;
  font-size: 28px;
}

.about-contact-content p {
  color: var(--charcoal-gray);
  margin-bottom: 28px;
  line-height: 1.7;
}

.support-features {
  margin-top: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
}

.feature-icon {
  color: var(--forest-sage);
  font-weight: bold;
  margin-right: 13px;
  font-size: 18px;
}

.about-contact-image {
  text-align: center;
}

.about-contact-image img {
  border-radius: 13px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

@media (max-width: 890px) {
  .contact-main-section {
    padding: 67px 0;
  }
  
  .contact-form-wrapper {
    padding: 28px 21px;
  }
  
  .contact-header h2 {
    font-size: 26px;
  }
  
  .about-contact-section {
    padding: 67px 0;
  }
  
  .about-contact-content {
    margin-bottom: 34px;
  }
}

.thankyou-hero-section {
  padding: 134px 0 89px;
  background: linear-gradient(135deg, var(--forest-sage), var(--ocean-blue));
  color: #fff;
  text-align: center;
}

.thankyou-content h1 {
  color: #fff;
  margin-bottom: 24px;
  font-size: 44px;
}

.thankyou-content .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  margin-bottom: 0;
}

.success-icon {
  margin-bottom: 34px;
}

.checkmark-circle {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.checkmark {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  position: relative;
}

.checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--forest-sage);
  font-size: 32px;
  font-weight: bold;
}

.thankyou-details-section {
  padding: 89px 0;
  background: #fff;
}

.next-steps-card {
  background: var(--seafoam-light);
  padding: 44px;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.next-steps-card h2 {
  color: var(--midnight-navy);
  text-align: center;
  margin-bottom: 44px;
  font-size: 32px;
}

.steps-timeline {
  position: relative;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 44px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  width: 44px;
  height: 44px;
  background: var(--forest-sage);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  margin-right: 24px;
  flex-shrink: 0;
}

.timeline-content h4 {
  color: var(--midnight-navy);
  margin-bottom: 8px;
  font-size: 20px;
}

.timeline-content p {
  color: var(--charcoal-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

.immediate-resources-section {
  padding: 89px 0;
  background: var(--silver-haze);
}

.resource-card {
  background: #fff;
  padding: 34px;
  border-radius: 13px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.resource-card h3 {
  color: var(--midnight-navy);
  margin-bottom: 18px;
  font-size: 24px;
}

.resource-card p {
  color: var(--charcoal-gray);
  margin-bottom: 24px;
  line-height: 1.6;
}

.resource-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.resource-link {
  display: flex;
  align-items: center;
  padding: 13px 18px;
  background: var(--seafoam-light);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.resource-link:hover {
  background: var(--forest-sage);
  color: #fff;
  transform: translateX(5px);
}

.link-icon {
  margin-right: 13px;
  font-size: 18px;
}

.link-text {
  color: var(--midnight-navy);
  font-weight: 500;
}

.resource-link:hover .link-text {
  color: #fff;
}

.contact-quick {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.quick-contact-item {
  display: flex;
  align-items: center;
  padding: 18px;
  background: var(--amber-glow);
  border-radius: 8px;
}

.contact-icon {
  font-size: 24px;
  margin-right: 16px;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-details strong {
  color: var(--midnight-navy);
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-details a,
.contact-details span {
  color: var(--charcoal-gray);
  text-decoration: none;
  font-size: 14px;
}

.contact-details a:hover {
  color: var(--forest-sage);
}

.community-preview-section {
  padding: 89px 0;
  background: #fff;
}

.preview-content h3 {
  color: var(--midnight-navy);
  margin-bottom: 24px;
  font-size: 28px;
}

.preview-content p {
  color: var(--charcoal-gray);
  margin-bottom: 21px;
  line-height: 1.7;
}

.community-highlights {
  display: flex;
  gap: 34px;
  margin-top: 34px;
}

.highlight-item {
  text-align: center;
}

.highlight-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--forest-sage);
  margin-bottom: 8px;
}

.highlight-text {
  display: block;
  font-size: 14px;
  color: var(--charcoal-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.preview-image img {
  border-radius: 13px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.final-message-section {
  padding: 89px 0;
  background: var(--seafoam-light);
}

.final-message h3 {
  color: var(--midnight-navy);
  margin-bottom: 24px;
  font-size: 28px;
}

.final-message p {
  color: var(--charcoal-gray);
  margin-bottom: 21px;
  line-height: 1.7;
}

.return-actions {
  display: flex;
  gap: 21px;
  justify-content: center;
  margin-top: 34px;
}

@media (max-width: 640px) {
  .return-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .community-highlights {
    gap: 21px;
  }
  
  .contact-quick {
    gap: 16px;
  }
  
  .thankyou-hero-section {
    padding: 89px 0 67px;
  }
  
  .thankyou-content h1 {
    font-size: 32px;
  }
  
  .next-steps-card {
    padding: 28px 21px;
  }
  
  .timeline-marker {
    width: 36px;
    height: 36px;
    font-size: 14px;
    margin-right: 18px;
  }
  
  .immediate-resources-section,
  .community-preview-section,
  .final-message-section {
    padding: 67px 0;
  }
  
  .preview-content {
    margin-bottom: 34px;
  }
}

.ffa p {
  color: black;
}