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

html {
  scroll-behavior: smooth;
}

body, html, h1, h2, h3, h4, h5, h6, ul, figure, p {
  margin: 0px;
  padding: 0px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

button {
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 0;
  background: none;
  margin: 0;
  padding: 0;
}

select, input[type=text], input[type=submit], input[type=number], input[type=phone], input[type=email], input[type=password],
input[type=mail], input[type=tel], textarea {
  outline: none;
  margin: 0;
  border-radius: 0;
}

input[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
}

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

table {
  border-collapse: collapse;
}

iframe {
  border: none;
}

.u-displaynone {
  display: none !important;
}

.u-displayflex {
  display: flex !important;
}

.u-displayblock {
  display: block !important;
}

.u-displayinline {
  display: inline !important;
}

.u-displayinlineblock {
  display: inline-block !important;
}

.u-hidden {
  visibility: hidden !important;
}

.u-visible {
  visibility: visible !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-left {
  text-align: left !important;
}

.u-text-right {
  text-align: right !important;
}

.u-text-uppercase {
  text-transform: uppercase !important;
}

.u-text-lowercase {
  text-transform: lowercase !important;
}

.u-text-capitalize {
  text-transform: capitalize !important;
}

.u-text-bold {
  font-weight: 700 !important;
}

.u-text-normal {
  font-weight: 400 !important;
}

.u-overflow-hidden {
  overflow: hidden !important;
}

.u-overflow-auto {
  overflow: auto !important;
}

.u-w-full {
  width: 100% !important;
}

.u-h-full {
  height: 100% !important;
}

.u-c-main {
  color: var(--color-main) !important;
}

.u-bg-main {
  background: var(--color-main) !important;
}

.u-c-second {
  color: var(--color-second) !important;
}

.u-bg-second {
  background: var(--color-second) !important;
}

.u-c-third {
  color: var(--color-third) !important;
}

.u-bg-third {
  background: var(--color-third) !important;
}

.u-hide-mobile {
  display: none !important;
}
@media (min-width: 768px) {
  .u-hide-mobile {
    display: initial !important;
  }
}

.u-hide-desktop {
  display: initial !important;
}
@media (min-width: 768px) {
  .u-hide-desktop {
    display: none !important;
  }
}

p, a, ul, li, button, label, table {
  font-family: Lato;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Oswald;
}

.u-c-main {
  color: #14477e;
}

.u-bg-main {
  background: #14477e;
}

.u-c-second {
  color: #1278ab;
}

.u-bg-second {
  background: #1278ab;
}

.u-c-third {
  color: #cd9333;
}

.u-bg-third {
  background: #cd9333;
}

:root {
  --color-success: #1010dd;
  --color-success-bg: #d4e4ed;
  --color-success-text: #155724;
  --color-success-border: #c3d4e6;
  --color-error: #e74c3c;
  --color-error-bg: #f8d7da;
  --color-error-text: #721c24;
  --color-error-border: #f5c6cb;
  --color-warning: #f39c12;
  --color-warning-bg: #fff3cd;
  --color-warning-text: #856404;
  --color-warning-border: #ffeeba;
  --color-info: #3498db;
  --color-info-bg: #d1ecf1;
  --color-info-text: #0c5460;
  --color-info-border: #bee5eb;
  --color-main: #14477e;
  --color-second: #1278ab;
  --color-third: #cd9333;
  --color-four: #f4f273;
  --color-five: #7d1463;
  --color-card-info-bg: #f0f7ff;
  --color-card-info-bg-light: #e3f2fd;
  --color-card-info-text: #1565c0;
  --color-card-warning-bg-light: #fff9e6;
  --color-card-warning-text-dark: #c77700;
  --color-online-bg: #88bff9;
  --color-online-text: #164990;
  --color-offline-text: #991b1b;
  --color-incident-bg: #fef3c7;
  --color-incident-border: #fde68a;
  --color-incident-text: #92400e;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-text: #333333;
  --color-text-secondary: #666666;
  --color-text-tertiary: #999999;
  --color-bg: #FFFFFF;
  --color-bg-light: #F5F5F5;
  --color-bg-hover: #F0F0F0;
  --color-border: #DDDDDD;
  --color-border-light: #EEEEEE;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;
  --transition-fast: all 0.15s ease;
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero__title {
  animation: hero-fade-up 0.7s ease forwards;
  animation-delay: 0s;
}

.hero__subtitle {
  opacity: 0;
  animation: hero-fade-up 0.6s ease forwards;
  animation-delay: 0.15s;
}

.hero__ctas {
  opacity: 0;
  animation: hero-fade-in 0.5s ease forwards;
  animation-delay: 0.3s;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--visible {
  opacity: 1;
  transform: none;
}

.reveal--sm {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal--sm.reveal--visible {
  opacity: 1;
  transform: none;
}

.reveal--from-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--from-left.reveal--visible {
  opacity: 1;
  transform: none;
}

.reveal--from-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--from-right.reveal--visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  .hero__title,
  .hero__subtitle,
  .hero__ctas {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .reveal,
  .reveal--sm,
  .reveal--from-left,
  .reveal--from-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("../img/hero-bg.webp") no-repeat center center;
  background-size: cover;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 60, 0.65);
  z-index: 1;
}
.hero__container {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 24px 0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.hero__subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 48px 0;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__btn {
  display: inline-block;
  padding: 15px 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.hero__btn--primary {
  background: #cd9333;
  color: #0a0f3c;
  border: 1px solid #cd9333;
}
.hero__btn--primary:hover {
  background: #b8822b;
  border-color: #b8822b;
  box-shadow: 0 4px 20px rgba(205, 147, 51, 0.3);
  transform: translateY(-2px);
}
.hero__btn--secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.hero__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
  color: #FFFFFF;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero {
    min-height: 500px;
  }
  .hero__title {
    font-size: 36px;
  }
  .hero__subtitle {
    font-size: 18px;
    margin-bottom: 36px;
  }
  .hero__btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: 450px;
  }
  .hero__container {
    padding: 0 24px;
  }
  .hero__title {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .hero__subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero__btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
.vp {
  padding: 120px 0;
  background: #FFFFFF;
}
.vp__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.vp__item {
  padding: 0 48px;
}
.vp__divider {
  width: 1px;
  background: #E0E0E0;
  align-self: stretch;
}
.vp__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #14477e;
  opacity: 0.07;
  margin-bottom: 32px;
  line-height: 1;
}
.vp__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-main, #14477e);
  margin: 0 0 16px 0;
  letter-spacing: 0.01em;
}
.vp__text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #6B6B6B;
  margin: 0;
}

@media (max-width: 1024px) {
  .vp {
    padding: 96px 0;
  }
  .vp__container {
    gap: 0;
  }
  .vp__item {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .vp {
    padding: 80px 0;
  }
  .vp__container {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .vp__item {
    padding: 40px 0;
  }
  .vp__item:first-child {
    padding-top: 0;
  }
  .vp__item:last-child {
    padding-bottom: 0;
  }
  .vp__divider {
    width: 100%;
    height: 1px;
  }
  .vp__number {
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .vp {
    padding: 64px 0;
  }
  .vp__container {
    padding: 0 24px;
  }
  .vp__item {
    padding: 32px 0;
  }
}
.about-preview {
  background: #FAFAFA;
  overflow: hidden;
}
.about-preview__container {
  display: flex;
  align-items: stretch;
  min-height: 520px;
}
.about-preview__content {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 64px 96px 80px;
}
.about-preview__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-main, #14477e);
  margin-bottom: 40px;
}
.about-preview__label::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: #cd9333;
  margin-bottom: 16px;
}
.about-preview__text {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  color: #424242;
  margin: 0 0 48px 0;
}
.about-preview__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #05060F;
  text-decoration: none;
  transition: color 0.2s ease;
}
.about-preview__link span {
  transition: transform 0.2s ease;
}
.about-preview__link:hover {
  color: var(--color-third, #cd9333);
}
.about-preview__link:hover span {
  transform: translateX(4px);
}
.about-preview__image {
  width: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.about-preview__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92) contrast(1.05);
}

@media (max-width: 1200px) {
  .about-preview__content {
    padding: 80px 48px 80px 32px;
  }
}
@media (max-width: 768px) {
  .about-preview__container {
    flex-direction: column;
    min-height: auto;
  }
  .about-preview__content {
    width: 100%;
    padding: 64px 32px;
    order: 1;
  }
  .about-preview__image {
    width: 100%;
    min-height: 360px;
    order: 2;
  }
  .about-preview__text {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .about-preview__content {
    padding: 48px 24px;
  }
  .about-preview__image {
    min-height: 280px;
  }
  .about-preview__label {
    margin-bottom: 24px;
  }
  .about-preview__text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
  }
  .about-preview__link {
    font-size: 13px;
  }
}
.stats {
  padding: 120px 0 !important;
  background: linear-gradient(135deg, #0c2444 0%, #14477e 100%) !important;
}
.stats__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats__item {
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
}
.stats__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.stats__label {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
  .stats {
    padding: 96px 0;
  }
  .stats__number {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .stats {
    padding: 80px 0;
  }
  .stats__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 0;
  }
  .stats__item {
    padding: 0 24px;
  }
  .stats__item:nth-child(2)::after {
    display: none;
  }
  .stats__number {
    font-size: 44px;
  }
}
@media (max-width: 480px) {
  .stats {
    padding: 64px 0;
  }
  .stats__container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  .stats__item {
    padding: 0;
  }
  .stats__item:not(:last-child)::after {
    display: none;
  }
  .stats__number {
    font-size: 48px;
    margin-bottom: 8px;
  }
  .stats__label {
    font-size: 13px;
  }
}
.join-cta {
  padding: 120px 0 !important;
  background: #FFFFFF !important;
}
.join-cta__wrapper {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 64px;
}
.join-cta__image {
  width: 280px;
  flex-shrink: 0;
  overflow: hidden;
}
.join-cta__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92) contrast(1.05);
}
.join-cta__container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.join-cta__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-main, #14477e);
  margin-bottom: 40px;
}
.join-cta__title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3;
  color: #05060F;
  margin: 0 0 48px 0;
  max-width: 640px;
  letter-spacing: 0.01em;
  padding-left: 24px;
  border-left: 3px solid var(--color-third, #cd9333);
}
.join-cta__benefits {
  list-style: none;
  margin: 0 0 48px 0;
  padding: 0;
}
.join-cta__benefit {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: #424242;
  padding: 16px 0;
  border-bottom: 1px solid #E0E0E0;
  padding-left: 20px;
  position: relative;
}
.join-cta__benefit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #cd9333;
}
.join-cta__benefit:first-child {
  border-top: 1px solid #E0E0E0;
}
.join-cta__btn {
  display: inline-block;
  padding: 15px 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  background: #cd9333;
  color: #0a0f3c;
  border: 1px solid #cd9333;
  border-radius: 0;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}
.join-cta__btn:hover {
  background: #b8822b;
  border-color: #b8822b;
  color: #0a0f3c;
  box-shadow: 0 4px 20px rgba(205, 147, 51, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .join-cta {
    padding: 96px 0 !important;
  }
  .join-cta__wrapper {
    gap: 48px;
  }
  .join-cta__image {
    width: 220px;
  }
  .join-cta__title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .join-cta {
    padding: 80px 0 !important;
  }
  .join-cta__wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .join-cta__image {
    width: 100%;
    max-height: 300px;
  }
  .join-cta__label {
    margin-bottom: 32px;
  }
  .join-cta__title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .join-cta__benefits {
    margin-bottom: 40px;
  }
  .join-cta__benefit {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .join-cta {
    padding: 64px 0 !important;
  }
  .join-cta__wrapper {
    padding: 0 24px;
  }
  .join-cta__label {
    margin-bottom: 24px;
  }
  .join-cta__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .join-cta__benefit {
    font-size: 15px;
    padding: 14px 0;
  }
  .join-cta__btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
.latest-news {
  padding: 120px 0 !important;
  background: #FAFAFA !important;
}
.latest-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.latest-news__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2235DD;
  margin-bottom: 48px;
}
.latest-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.latest-news__card {
  padding-bottom: 32px;
  border-bottom: 1px solid #E0E0E0;
}
.latest-news__cat {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2235DD;
  margin-bottom: 16px;
}
.latest-news__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #05060F;
  margin: 0 0 12px 0;
  letter-spacing: 0.01em;
}
.latest-news__excerpt {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #6B6B6B;
  margin: 0 0 20px 0;
}
.latest-news__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #05060F;
  text-decoration: none;
  transition: color 0.15s ease;
}
.latest-news__link span {
  transition: transform 0.15s ease;
}
.latest-news__link:hover {
  color: #2235DD;
}
.latest-news__link:hover span {
  transform: translateX(4px);
}
.latest-news__footer {
  margin-top: 48px;
}
.latest-news__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #05060F;
  text-decoration: none;
  transition: color 0.15s ease;
}
.latest-news__all span {
  transition: transform 0.15s ease;
}
.latest-news__all:hover {
  color: #2235DD;
}
.latest-news__all:hover span {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .latest-news {
    padding: 96px 0 !important;
  }
  .latest-news__grid {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .latest-news {
    padding: 80px 0 !important;
  }
  .latest-news__label {
    margin-bottom: 40px;
  }
  .latest-news__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .latest-news__card {
    padding: 32px 0;
    border-bottom: 1px solid #E0E0E0;
  }
  .latest-news__card:first-child {
    padding-top: 0;
  }
  .latest-news__footer {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .latest-news {
    padding: 64px 0 !important;
  }
  .latest-news__container {
    padding: 0 24px;
  }
  .latest-news__label {
    margin-bottom: 32px;
  }
  .latest-news__title {
    font-size: 18px;
  }
  .latest-news__excerpt {
    font-size: 14px;
  }
}
.latest-articles {
  background: #FAFAFA;
  padding: 96px 0;
}
.latest-articles__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.latest-articles__label {
  display: block;
  color: var(--color-main);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.latest-articles__grid {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
}
.latest-articles__card {
  flex: 1;
  background: #fff;
  padding: 32px;
  border: 1px solid #E8E8E8;
  text-align: left;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 0.25s ease;
}
.latest-articles__card:hover {
  border-bottom-color: #cd9333;
}
.latest-articles__title {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.4;
  height: 84px;
  overflow: hidden;
  margin-bottom: 16px;
}
.latest-articles__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.latest-articles__title a:hover {
  color: var(--color-second, #1278ab);
}
.latest-articles__intro {
  color: #6B6B6B;
  font-size: 15px;
  line-height: 1.6;
  height: 72px;
  overflow: hidden;
  margin-bottom: 20px;
}
.latest-articles__meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #999;
}
.latest-articles__btn {
  display: inline-block;
  background: #cd9333;
  color: #fff;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.2s, transform 0.3s ease;
}
.latest-articles__btn:hover {
  background: #b8812b;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .latest-articles {
    padding: 64px 0;
  }
  .latest-articles__grid {
    flex-direction: column;
  }
  .latest-articles__card {
    padding: 24px;
  }
}

.final-cta {
  padding: 120px 0 !important;
  background: #FFFFFF !important;
  border-top: 1px solid #E0E0E0;
}
.final-cta__container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.final-cta__title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3;
  color: #05060F;
  margin: 0 0 24px 0;
  letter-spacing: 0.01em;
}
.final-cta__title span {
  color: var(--color-second, #1278ab);
}
.final-cta__text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #6B6B6B;
  margin: 0 0 48px 0;
}
.final-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta__btn {
  display: inline-block;
  padding: 15px 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.final-cta__btn--primary {
  background: #cd9333;
  color: #0a0f3c;
  border: 1px solid #cd9333;
}
.final-cta__btn--primary:hover {
  background: #b8822b;
  border-color: #b8822b;
  box-shadow: 0 4px 20px rgba(205, 147, 51, 0.3);
  transform: translateY(-2px);
}
.final-cta__btn--secondary {
  background: transparent;
  color: #05060F;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.final-cta__btn--secondary:hover {
  border-color: var(--color-main, #14477e);
  color: var(--color-main, #14477e);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .final-cta {
    padding: 96px 0 !important;
  }
  .final-cta__title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .final-cta {
    padding: 80px 0 !important;
  }
  .final-cta__title {
    font-size: 28px;
  }
  .final-cta__text {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .final-cta {
    padding: 64px 0 !important;
  }
  .final-cta__container {
    padding: 0 24px;
  }
  .final-cta__title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .final-cta__text {
    font-size: 15px;
    margin-bottom: 32px;
  }
  .final-cta__actions {
    flex-direction: column;
    align-items: center;
  }
  .final-cta__btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
.page-hero {
  padding: 120px 0 96px !important;
  background: linear-gradient(135deg, #0c2444 0%, #14477e 100%) !important;
  background-size: cover;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.page-hero__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.page-hero__title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0 0 20px 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.page-hero__title::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #cd9333;
  margin: 0 auto 24px;
}
.page-hero__subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 96px 0 72px !important;
  }
  .page-hero__title {
    font-size: 36px;
  }
  .page-hero__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .page-hero {
    padding: 72px 0 56px !important;
  }
  .page-hero__container {
    padding: 0 24px;
  }
  .page-hero__title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .page-hero__subtitle {
    font-size: 15px;
  }
}
.about-intro {
  padding: 120px 0 !important;
  background: #FFFFFF !important;
}
.about-intro__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.about-intro__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-main, #14477e);
  margin-bottom: 40px;
}
.about-intro__content {
  max-width: 720px;
}
.about-intro__text {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.8;
  color: #424242;
  margin: 0 0 24px 0;
}
.about-intro__text:last-child {
  margin-bottom: 0;
}

.about-mv {
  padding: 120px 0 !important;
  background: #FAFAFA !important;
}
.about-mv__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.about-mv__item {
  padding: 0 64px;
}
.about-mv__divider {
  width: 1px;
  background: #E0E0E0;
  align-self: stretch;
}
.about-mv__title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-main, #14477e);
  margin: 0 0 32px 0;
}
.about-mv__text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #424242;
  margin: 0;
}

.about-values {
  padding: 120px 0 !important;
  background: #FFFFFF !important;
}
.about-values__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.about-values__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-main, #14477e);
  margin-bottom: 48px;
}
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}
.about-values__item {
  padding-bottom: 48px;
  border-bottom: 1px solid #E0E0E0;
}
.about-values__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #05060F;
  margin: 0 0 12px 0;
}
.about-values__text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #6B6B6B;
  margin: 0;
}

.about-history {
  padding: 120px 0 !important;
  background: #FAFAFA !important;
}
.about-history__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.about-history__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-main, #14477e);
  margin-bottom: 40px;
}
.about-history__intro {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.8;
  color: #424242;
  margin: 0 0 64px 0;
  max-width: 720px;
}
.about-history__timeline {
  max-width: 800px;
}
.about-history__entry {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid #E0E0E0;
}
.about-history__entry:first-child {
  border-top: 1px solid #E0E0E0;
}
.about-history__year {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #05060F;
  letter-spacing: 0.02em;
}
.about-history__event {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #6B6B6B;
  margin: 0;
}

.about-cta {
  padding: 120px 0 !important;
  background: #FFFFFF !important;
  border-top: 1px solid #E0E0E0;
  text-align: center;
}
.about-cta__container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
}
.about-cta__title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3;
  color: #05060F;
  margin: 0 0 24px 0;
  letter-spacing: 0.01em;
}
.about-cta__text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #6B6B6B;
  margin: 0 0 48px 0;
}
.about-cta__btn {
  display: inline-block;
  padding: 15px 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  background: #cd9333;
  color: #0a0f3c;
  border: 1px solid #cd9333;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.about-cta__btn:hover {
  background: #b8822b;
  border-color: #b8822b;
  box-shadow: 0 4px 20px rgba(205, 147, 51, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .about-intro,
  .about-mv,
  .about-values,
  .about-history,
  .about-cta {
    padding: 96px 0 !important;
  }
  .about-mv__item {
    padding: 0 48px;
  }
  .about-values__grid {
    gap: 40px 48px;
  }
}
@media (max-width: 768px) {
  .about-intro,
  .about-mv,
  .about-values,
  .about-history,
  .about-cta {
    padding: 80px 0 !important;
  }
  .about-intro__label {
    margin-bottom: 32px;
  }
  .about-intro__text {
    font-size: 17px;
  }
  .about-mv__container {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-mv__item {
    padding: 40px 0;
  }
  .about-mv__item:first-child {
    padding-top: 0;
  }
  .about-mv__item:last-child {
    padding-bottom: 0;
  }
  .about-mv__divider {
    width: 100%;
    height: 1px;
  }
  .about-values__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-values__item {
    padding: 32px 0;
    border-bottom: 1px solid #E0E0E0;
  }
  .about-values__item:first-child {
    border-top: 1px solid #E0E0E0;
  }
  .about-history__intro {
    font-size: 17px;
    margin-bottom: 48px;
  }
  .about-history__entry {
    grid-template-columns: 64px 1fr;
    gap: 24px;
  }
  .about-cta__title {
    font-size: 28px;
  }
  .about-cta__text {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .about-intro,
  .about-mv,
  .about-values,
  .about-history,
  .about-cta {
    padding: 64px 0 !important;
  }
  .about-intro__container,
  .about-mv__container,
  .about-values__container,
  .about-history__container,
  .about-cta__container {
    padding: 0 24px;
  }
  .about-intro__text {
    font-size: 16px;
    line-height: 1.7;
  }
  .about-mv__text {
    font-size: 16px;
  }
  .about-values__title {
    font-size: 20px;
  }
  .about-history__entry {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }
  .about-cta__title {
    font-size: 24px;
  }
  .about-cta__btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
.board {
  padding: 120px 0 !important;
  background: #FFFFFF !important;
}
.board__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.board__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-main, #14477e);
  margin-bottom: 40px;
}
.board__intro {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.8;
  color: #424242;
  margin: 0 0 64px 0;
  max-width: 720px;
}
.board__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
}
.board__member {
  text-align: center;
}
.board__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
}
.board__role {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-main, #14477e);
  margin-bottom: 8px;
}
.board__name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #05060F;
  margin: 0 0 8px 0;
}
.board__info {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #6B6B6B;
}

.board-past {
  padding: 120px 0 !important;
  background: #FAFAFA !important;
}
.board-past__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.board-past__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-main, #14477e);
  margin-bottom: 40px;
}
.board-past__text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #6B6B6B;
  margin: 0 0 64px 0;
  max-width: 640px;
}
.board-past__period {
  max-width: 720px;
  border-top: 1px solid #E0E0E0;
  padding-top: 48px;
}
.board-past__period-year {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #cd9333;
  margin-bottom: 12px;
}
.board-past__period-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #05060F;
  margin: 0 0 32px 0;
}
.board-past__period-text {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  color: #424242;
  margin: 0 0 24px 0;
}
.board-past__period-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .board,
  .board-past {
    padding: 96px 0 !important;
  }
  .board__grid {
    gap: 40px 24px;
  }
}
@media (max-width: 768px) {
  .board,
  .board-past {
    padding: 80px 0 !important;
  }
  .board__intro {
    font-size: 17px;
    margin-bottom: 48px;
  }
  .board__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
  .board__avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
  .board__name {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .board,
  .board-past {
    padding: 64px 0 !important;
  }
  .board__container,
  .board-past__container {
    padding: 0 24px;
  }
  .board__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 280px;
    margin: 0 auto;
  }
  .board__avatar {
    width: 72px;
    height: 72px;
  }
}
.join-why {
  padding: 120px 0 !important;
  background: #FFFFFF !important;
}
.join-why__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.join-why__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-main, #14477e);
  margin-bottom: 40px;
}
.join-why__intro {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: #6B6B6B;
  margin: 0 0 48px 0;
  max-width: 720px;
}
.join-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 64px;
}
.join-why__item {
  padding: 32px 0;
  border-bottom: 1px solid #E0E0E0;
}
.join-why__item:nth-child(-n+3) {
  border-top: 1px solid #E0E0E0;
}
.join-why__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #BDBDBD;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.join-why__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #05060F;
  margin: 0 0 10px 0;
}
.join-why__text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #6B6B6B;
  margin: 0;
}

.join-how {
  padding: 120px 0 !important;
  background: #FAFAFA !important;
}
.join-how__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.join-how__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-main, #14477e);
  margin-bottom: 40px;
}
.join-how__steps {
  max-width: 800px;
}
.join-how__step {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid #E0E0E0;
}
.join-how__step:first-child {
  border-top: 1px solid #E0E0E0;
}
.join-how__number {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #BDBDBD;
  flex-shrink: 0;
  padding-top: 2px;
}
.join-how__content {
  flex: 1;
}
.join-how__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #05060F;
  margin: 0 0 8px 0;
}
.join-how__text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #6B6B6B;
  margin: 0;
}

.join-cta-page {
  padding: 120px 0 !important;
  background: #FFFFFF !important;
  border-top: 1px solid #E0E0E0;
  text-align: center;
}
.join-cta-page__container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
}
.join-cta-page__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  color: #05060F;
  margin: 0 0 24px 0;
}
.join-cta-page__text {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: #6B6B6B;
  margin: 0 0 48px 0;
}
.join-cta-page__btn {
  display: inline-block;
  padding: 15px 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  background: #cd9333;
  color: #0a0f3c;
  border: 1px solid #cd9333;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.join-cta-page__btn:hover {
  background: #b8822b;
  border-color: #b8822b;
  box-shadow: 0 4px 20px rgba(205, 147, 51, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .join-why,
  .join-how,
  .join-cta-page {
    padding: 96px 0 !important;
  }
}
@media (max-width: 768px) {
  .join-why,
  .join-how,
  .join-cta-page {
    padding: 80px 0 !important;
  }
  .join-why__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 48px;
  }
  .join-why__item:nth-child(-n+3) {
    border-top: none;
  }
  .join-why__item:nth-child(-n+2) {
    border-top: 1px solid #E0E0E0;
  }
  .join-cta-page__title {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .join-why,
  .join-how,
  .join-cta-page {
    padding: 64px 0 !important;
  }
  .join-why__container,
  .join-how__container,
  .join-cta-page__container {
    padding: 0 24px;
  }
  .join-why__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .join-why__item:nth-child(-n+2) {
    border-top: none;
  }
  .join-why__item:first-child {
    border-top: 1px solid #E0E0E0;
  }
  .join-how__step {
    flex-direction: column;
    gap: 8px;
  }
  .join-cta-page__title {
    font-size: 24px;
  }
  .join-cta-page__btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
.membership-form {
  padding: 80px 0;
  background: #FFFFFF;
  border-top: 1px solid #E0E0E0;
}
.membership-form__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.membership-form__header {
  margin-bottom: 48px;
  text-align: center;
}
.membership-form__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  color: #05060F;
  margin: 0 0 16px 0;
  letter-spacing: 0.01em;
}
.membership-form__text {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: #6B6B6B;
  margin: 0 auto;
  max-width: 600px;
}
.membership-form__alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  margin-bottom: 32px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}
.membership-form__alert--success {
  background: #f0faf4;
  border-left: 4px solid #2e7d52;
  color: #1d5236;
}
.membership-form__alert--error {
  background: #fef5f5;
  border-left: 4px solid #c0392b;
  color: #7d1f1f;
}
.membership-form__body {
  display: flex;
  flex-direction: column;
}
.membership-form__row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .membership-form__row {
    flex-direction: row;
  }
}
.membership-form__row--full {
  flex-direction: column !important;
}
.membership-form__group {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.membership-form__group--error .membership-form__input,
.membership-form__group--error .membership-form__textarea {
  border-color: #c0392b;
  background: #fef5f5;
}
.membership-form__label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #05060F;
  margin-bottom: 8px;
}
.membership-form__required {
  color: var(--color-third, #cd9333);
  margin-left: 2px;
}
.membership-form__input, .membership-form__textarea {
  width: 100%;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: #05060F;
  background: transparent;
  border: none;
  border-bottom: 1px solid #E0E0E0;
  border-radius: 0;
  box-sizing: border-box;
  appearance: none;
  outline: none;
  transition: border-color 0.2s ease;
}
.membership-form__input::placeholder, .membership-form__textarea::placeholder {
  color: #BDBDBD;
}
.membership-form__input:focus, .membership-form__textarea:focus {
  border-color: var(--color-main, #14477e);
}
.membership-form__input--error, .membership-form__textarea--error {
  border-color: #c0392b;
}
.membership-form__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
  font-family: var(--font-body);
}
.membership-form__submit {
  display: inline-block;
  padding: 15px 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--color-third, #cd9333);
  color: #0a0f3c;
  border: 1px solid var(--color-third, #cd9333);
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: flex-start;
}
.membership-form__submit:hover {
  background: #b8822b;
  border-color: #b8822b;
  box-shadow: 0 4px 20px rgba(205, 147, 51, 0.3);
  transform: translateY(-2px);
}
.membership-form__submit:focus {
  outline: 2px solid var(--color-main, #14477e);
  outline-offset: 2px;
}
.membership-form__note {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: #9E9E9E;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .membership-form {
    padding: 96px 0;
  }
  .membership-form__container {
    padding: 0 32px;
  }
  .membership-form__title {
    font-size: 36px;
  }
  .membership-form__text {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .membership-form {
    padding: 120px 0;
  }
}

.membership-thanks {
  padding: 80px 0 120px;
  text-align: center;
}
.membership-thanks__container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
}
.membership-thanks__heading {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  color: #05060F;
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .membership-thanks__heading {
    font-size: 38px;
  }
}
.membership-thanks__text {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: #6B6B6B;
  margin: 0 0 16px;
}
.membership-thanks__btn {
  display: inline-block;
  margin-top: 32px;
  padding: 15px 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  background: #cd9333;
  color: #0a0f3c;
  border: 1px solid #cd9333;
  cursor: pointer;
  transition: background 0.3s ease box-shadow 0.3s ease transform 0.3s ease;
}
.membership-thanks__btn:hover {
  background: #b8822b;
  border-color: #b8822b;
  box-shadow: 0 4px 20px rgba(205, 147, 51, 0.3);
  transform: translateY(-2px);
}

.contact {
  padding: 120px 0 !important;
  background: #FFFFFF !important;
}
.contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 96px;
  align-items: start;
}
.contact__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-main, #14477e);
  margin-bottom: 40px;
}
.contact__item {
  padding: 24px 0;
  border-bottom: 1px solid #E0E0E0;
}
.contact__item:first-of-type {
  border-top: 1px solid #E0E0E0;
}
.contact__item-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #BDBDBD;
  margin-bottom: 8px;
}
.contact__item-value {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: #05060F;
  text-decoration: none;
  transition: color 0.15s ease;
}
.contact__item-value:hover {
  color: var(--color-main, #14477e);
}
.contact__field {
  margin-bottom: 24px;
}
.contact__field-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #05060F;
  margin-bottom: 8px;
}
.contact__input {
  width: 100%;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: #05060F;
  background: transparent;
  border: none;
  border-bottom: 1px solid #E0E0E0;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
}
.contact__input:focus {
  outline: none;
  border-color: var(--color-main, #14477e);
}
.contact__input::placeholder {
  color: #BDBDBD;
}
.contact__select {
  cursor: pointer;
  background: transparent;
}
.contact__textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}
.contact__submit {
  display: inline-block;
  padding: 15px 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #cd9333;
  color: #0a0f3c;
  border: 1px solid #cd9333;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  margin-top: 8px;
}
.contact__submit:hover {
  background: #b8822b;
  border-color: #b8822b;
  box-shadow: 0 4px 20px rgba(205, 147, 51, 0.3);
  transform: translateY(-2px);
}
.contact__required {
  font-family: var(--font-body);
  font-size: 13px;
  color: #BDBDBD;
  margin: 16px 0 0;
}

@media (max-width: 1024px) {
  .contact {
    padding: 96px 0 !important;
  }
  .contact__grid {
    gap: 64px;
  }
}
@media (max-width: 768px) {
  .contact {
    padding: 80px 0 !important;
  }
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}
@media (max-width: 480px) {
  .contact {
    padding: 64px 0 !important;
  }
  .contact__container {
    padding: 0 24px;
  }
  .contact__submit {
    width: 100%;
    text-align: center;
  }
}
.legal-content {
  padding: 120px 0 !important;
  background: #FFFFFF !important;
}
.legal-content__container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}
.legal-content__text {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  color: #424242;
  margin: 0 0 24px 0;
}
.legal-content__text:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 80px 0 !important;
  }
  .legal-content__text {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .legal-content {
    padding: 64px 0 !important;
  }
  .legal-content__container {
    padding: 0 24px;
  }
}
.blog-hero {
  padding: 60px 20px;
  text-align: center;
  background: #FAFAFA !important;
}
.blog-hero__container {
  max-width: 800px;
  margin: 0 auto;
}
.blog-hero__title {
  font-size: 28px;
  font-weight: 700;
  color: #1278ab;
  margin: 0 0 12px 0;
}
@media (min-width: 768px) {
  .blog-hero__title {
    font-size: 36px;
  }
}
.blog-hero__subtitle {
  font-size: 16px;
  color: #808184;
  margin: 0 0 8px 0;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .blog-hero__subtitle {
    font-size: 18px;
  }
}
.blog-hero__meta {
  font-size: 14px;
  color: #929497;
  margin: 0;
}
.blog-hero__back {
  color: #14477e;
  text-decoration: none;
}
.blog-hero__back:hover {
  text-decoration: underline;
}

.blog-post-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .blog-post-hero {
    min-height: 480px;
    padding: 60px 40px;
  }
}
.blog-post-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.blog-post-hero__container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.blog-post-hero__category {
  display: inline-block;
  background: #14477e;
  color: white !important;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.blog-post-hero__title {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin: 0 0 16px 0;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .blog-post-hero__title {
    font-size: 40px;
  }
}
.blog-post-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.blog {
  padding: 40px 20px 60px;
  background: white !important;
}
@media (min-width: 768px) {
  .blog {
    padding: 60px 40px 80px;
  }
}
.blog__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .blog__container {
    grid-template-columns: 1fr 280px;
  }
}
@media (min-width: 1024px) {
  .blog__container--full {
    grid-template-columns: 1fr;
  }
}
.blog__main {
  min-width: 0;
}
.blog__empty {
  text-align: center;
  color: #929497;
  font-size: 16px;
  padding: 60px 0;
}
.blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog__card {
  border: 1px solid #E8E8E8;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  overflow: hidden;
  transition: border-bottom-color 0.25s ease;
  background: white;
}
.blog__card:hover {
  border-bottom-color: #cd9333;
}
.blog__card-image-link {
  display: block;
  overflow: hidden;
}
.blog__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform 0.3s ease;
}
.blog__card:hover .blog__card-image {
  transform: scale(1.03);
}
.blog__card-body {
  padding: 24px;
}
.blog__card-category {
  display: inline-block;
  background: rgb(138.9246575342, 185.9075342466, 236.5753424658);
  color: #14477e !important;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.blog__card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 10px 0;
}
.blog__card-title a {
  color: #1278ab;
  text-decoration: none;
}
.blog__card-title a:hover {
  color: var(--color-second, #1278ab);
}
.blog__card-intro {
  font-size: 14px;
  color: #808184;
  line-height: 1.6;
  margin: 0 0 16px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog__card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #929497;
  margin-bottom: 12px;
}
.blog__card-link {
  font-size: 14px;
  font-weight: 600;
  color: #14477e;
  text-decoration: none;
}
.blog__card-link:hover {
  text-decoration: underline;
}
.blog__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #E8E8E8;
}
.blog__pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #14477e;
  color: white !important;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
}
.blog__pagination-btn:hover {
  background: rgb(13.0136986301, 46.198630137, 81.9863013699);
}
.blog__pagination-info {
  font-size: 14px;
  color: #808184;
}
@media (min-width: 1024px) {
  .blog__sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}
.blog__sidebar-title {
  font-size: 16px;
  font-weight: 600;
  color: #1278ab;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #E8E8E8;
}
.blog__sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog__sidebar-list li {
  margin-bottom: 0;
}
.blog__sidebar-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  color: #6C6D70;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid #F0F1F1;
  transition: color 0.2s ease;
}
.blog__sidebar-link:hover {
  color: #14477e;
}
.blog__sidebar-link--active {
  color: #14477e;
  font-weight: 600;
}
.blog__sidebar-count {
  background: #F0F1F1;
  color: #808184;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
}

.blog-post__intro {
  font-size: 18px;
  font-weight: 500;
  color: #57585A;
  line-height: 1.7;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #E8E8E8;
}
@media (min-width: 768px) {
  .blog-post__intro {
    font-size: 20px;
  }
}
.blog-post__content {
  font-size: 16px;
  line-height: 1.8;
  color: #57585A;
}
.blog-post__content h1, .blog-post__content h2, .blog-post__content h3, .blog-post__content h4, .blog-post__content h5, .blog-post__content h6 {
  color: #1278ab;
  margin-top: 32px;
  margin-bottom: 16px;
  line-height: 1.3;
}
.blog-post__content h2 {
  font-size: 24px;
}
.blog-post__content h3 {
  font-size: 20px;
}
.blog-post__content p {
  margin: 0 0 16px 0;
}
.blog-post__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}
.blog-post__content a {
  color: #14477e;
  text-decoration: underline;
}
.blog-post__content ul, .blog-post__content ol {
  margin: 0 0 16px 0;
  padding-left: 24px;
}
.blog-post__content li {
  margin-bottom: 6px;
  line-height: 1.7;
}
.blog-post__content blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  border-left: 4px solid #14477e;
  background: #FAFAFA;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #6C6D70;
}
.blog-post__content pre, .blog-post__content code {
  font-size: 14px;
}
.blog-post__content pre {
  background: #3F3F41;
  color: #F0F1F1;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 20px 0;
}
.blog-post__content iframe {
  max-width: 100%;
  margin: 20px 0;
  border-radius: 8px;
}
.blog-post__back {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #E8E8E8;
}
.blog-post__back-link {
  font-size: 14px;
  font-weight: 600;
  color: #14477e;
  text-decoration: none;
}
.blog-post__back-link:hover {
  text-decoration: underline;
}

.blog-related {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid #E8E8E8;
}
.blog-related__title {
  font-size: 20px;
  font-weight: 600;
  color: #1278ab;
  margin: 0 0 24px 0;
}
.blog-related__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .blog-related__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-related__card {
  display: block;
  text-decoration: none;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.blog-related__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.blog-related__image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.blog-related__card-title {
  font-size: 15px;
  font-weight: 600;
  color: #1278ab;
  margin: 14px 16px 6px 16px;
  line-height: 1.35;
}
.blog-related__card-intro {
  font-size: 13px;
  color: #808184;
  margin: 0 16px 14px 16px;
  line-height: 1.5;
}

.artigos-search-section {
  background: #fff;
  padding: 40px 20px 24px;
}
.artigos-search-section__container {
  max-width: 900px;
  margin: 0 auto;
}

.m-artigos-search {
  max-width: 600px;
  margin: 0 auto;
}
.m-artigos-search__wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.m-artigos-search__input {
  width: 100%;
  padding: 14px 50px 14px 20px;
  font-size: 16px;
  border: 2px solid #e9ecef;
  border-radius: 0;
  outline: none;
  transition: all 0.3s ease;
  background: #fff;
}
.m-artigos-search__input:focus {
  border-color: var(--color-main, #14477e);
  box-shadow: 0 0 0 3px rgba(20, 71, 126, 0.1);
}
.m-artigos-search__input::placeholder {
  color: #adb5bd;
}
.m-artigos-search__icon {
  position: absolute;
  right: 18px;
  color: #adb5bd;
  pointer-events: none;
  font-size: 20px;
}
.m-artigos-search__clear {
  position: absolute;
  right: 50px;
  background: #dee2e6;
  border: none;
  border-radius: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  color: #fff;
  font-size: 14px;
  padding: 0;
}
.m-artigos-search__clear:hover {
  background: #adb5bd;
}
.m-artigos-search__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.m-artigos-search__filters-label {
  font-size: 14px;
  font-weight: 600;
  color: #495057;
}
.m-artigos-search__filter-btn {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid #e9ecef;
  border-radius: 0;
  background: #fff;
  color: #495057;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.m-artigos-search__filter-btn:hover {
  border-color: var(--color-main, #14477e);
  color: var(--color-main, #14477e);
}
.m-artigos-search__filter-btn--active {
  background: var(--color-main, #14477e);
  border-color: var(--color-main, #14477e);
  color: #fff;
}
.m-artigos-search__filter-btn--active:hover {
  background: #0f3a6b;
  border-color: #0f3a6b;
}
.m-artigos-search__status {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  min-height: 20px;
  font-weight: 500;
}
.m-artigos-search__status--loading {
  color: var(--color-main, #14477e);
}
.m-artigos-search__status--success {
  color: #28a745;
}
.m-artigos-search__status--error {
  color: #dc3545;
}

@media (min-width: 769px) {
  .artigos-search-section {
    padding: 48px 20px 28px;
  }
}
@media (max-width: 768px) {
  .m-artigos-search {
    max-width: 100%;
  }
  .m-artigos-search__input {
    font-size: 14px;
    padding: 12px 50px 12px 16px;
  }
  .m-artigos-search__filters {
    gap: 8px;
  }
  .m-artigos-search__filter-btn {
    padding: 6px 16px;
    font-size: 13px;
  }
}
.artigo-sidebar__box {
  margin-top: 24px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 0;
}
.artigo-sidebar__title {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 600;
  color: #05060F;
}
.artigo-sidebar__subtitle {
  font-size: 13px;
  color: #808184;
  margin: 0 0 16px 0;
}
.artigo-sidebar__field {
  margin-bottom: 12px;
}
.artigo-sidebar__field--last {
  margin-bottom: 16px;
}
.artigo-sidebar__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #05060F;
  margin-bottom: 4px;
}
.artigo-sidebar__input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
  font-family: system-ui;
}
.artigo-sidebar__input:focus {
  border-color: var(--color-main, #14477e);
}
.artigo-sidebar__submit {
  width: 100%;
  padding: 12px;
  background: #cd9333;
  color: #fff;
  border: none;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: system-ui;
}
.artigo-sidebar__submit:hover {
  background: #b8822b;
}
.artigo-sidebar__success {
  margin-top: 24px;
  padding: 20px;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 0;
}
.artigo-sidebar__success-title {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #155724;
  font-weight: 600;
}
.artigo-sidebar__success-text {
  margin: 0;
  font-size: 14px;
  color: #155724;
}
.artigo-sidebar__error {
  padding: 10px;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 0;
  margin-bottom: 12px;
  font-size: 13px;
  color: #721c24;
}
.artigo-sidebar__info {
  cursor: default;
}

.blog-post__external {
  margin: 24px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 0;
  text-align: center;
}

.blog-post__external-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-main, #14477e);
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-post__external-link:hover {
  color: #0f3a6b;
}

.main-footer {
  background: linear-gradient(135deg, #060e1f 0%, #0c2444 50%, #071121 100%);
  color: #FFFFFF;
  padding: 80px 0 40px;
}

.footer-content {
  margin-bottom: 64px;
}

.footer-section h3,
.footer-section h4 {
  color: #cd9333;
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.footer-logo {
  display: block;
  max-width: 126px;
  height: auto;
  margin-bottom: 20px;
}

.footer-section h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.footer-section h4 {
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.footer-section p {
  color: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.7;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #cd9333;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer-legal a:hover {
  color: #cd9333;
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter__title {
  margin-top: 32px;
}

.footer-newsletter__subtitle {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.95rem !important;
  margin-bottom: 16px;
}

.footer-newsletter__field {
  display: flex;
  align-items: stretch;
}

.footer-newsletter__input {
  flex: 1;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.footer-newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer-newsletter__input:focus {
  border-color: #cd9333;
  background: rgba(255, 255, 255, 0.12);
}

.footer-newsletter__btn {
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #cd9333;
  color: #0a0f3c;
  border: 1px solid #cd9333;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.footer-newsletter__btn:hover {
  background: #b8822b;
  border-color: #b8822b;
  box-shadow: 0 2px 12px rgba(205, 147, 51, 0.3);
}
