:root {
  --header-bg-color: #F6F6F6;
  --header-money-blue-color: #2959ce;
  --header-money-grey-color: #555555;
  --header-color: #8D8D8D;
  --header-language-color: #DCE6FF;
  --header-button-color: #7296EC;
  --white-color: #ffffff;
  --header-translate-section-text-color: #A6A6A6;
  --nav-text-color: #7F7F7F;
  --header-hr-color: #d1d1d1;
  --card-bg-color: #f6f6f6;
  --black-color: #000000;
  --card-text-color: #4A4B4C;
  --card-company-color: #5E5F61;
  --cta-button-bg-color: #F78B3B;
  --footer-button-bg-color: #EAEAEA;
  --footer-bg-color: #7297EF;
  --footer-hr-color: #CECECE;
  --article-hr-color: #D2D2D2;
  --contact-button-color: #7297EF;
}

/* ===== GLOBAL ===== */
html {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  margin: 0;
  font-family: "Rubik", "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  background-color: var(--white-color);
  color: var(--card-text-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  transition: opacity 0.3s ease, color 0.3s ease;
}

/* ===== VISUALLY HIDDEN ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/* ===== LOADER ===== */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-logo {
  width: 200px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--header-hr-color);
  border-top-color: var(--header-button-color);
  border-radius: 50%;
  animation: loaderSpin 0.8s linear infinite;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== HEADER ===== */
.header {
  background-color: var(--header-bg-color);
}

.header-container {
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo-wrapper {
  display: flex;
  align-items: center;
}

.header-logo-wrapper a {
  width: 276px;
  margin-right: 35px;
  flex-shrink: 0;
}

.header-logo-wrapper a:hover {
  opacity: 0.8;
}

.header-logo-wrapper a:active {
  opacity: 0.6;
}

.header-money-wrapper {
  font-weight: 400;
  line-height: 19px;
  white-space: nowrap;
}

.money-blue {
  color: var(--header-money-blue-color);
  margin-right: 3px;
}

.header-money-wrapper:not(:last-child) {
  margin-right: 25px;
}

.header-input-wrapper {
  display: flex;
  align-items: center;
}

.header-input-wrapper input {
  margin-right: 25px;
  width: 275px;
  height: 45px;
  border: none;
  border-radius: 50px;
  padding-left: 41px;
  background-image: url(../img/search.svg);
  background-repeat: no-repeat;
  background-position: 15px center;
  outline: none;
  font-family: inherit;
  font-size: 14px;
}

.header-input-wrapper input:focus {
  box-shadow: 0 0 0 2px var(--header-button-color);
}

.translate-wrapper {
  width: 70px;
  height: 36px;
  display: flex;
  background-color: var(--header-language-color);
  border-radius: 39px;
  align-items: center;
  margin-right: 25px;
  flex-shrink: 0;
}

.uz-section {
  margin: 1px 0 3px 3px;
}

.uz-section a {
  text-decoration: none;
  padding: 7px;
  border-radius: 50%;
  margin-right: 8px;
  background-color: var(--white-color);
  color: rgb(0, 0, 0);
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
}

.ru-section {
  flex-grow: 1;
}

.ru-section a {
  text-decoration: none;
  color: var(--header-translate-section-text-color);
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
}

.header-button {
  text-decoration: none;
  padding: 13px 20px;
  background-color: var(--header-button-color);
  border-radius: 10px;
  color: var(--white-color);
  line-height: 19px;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-button:hover {
  opacity: 0.8;
}

.header-button:active {
  opacity: 0.6;
}

/* ===== NAVIGATION ===== */
.site-nav {
  margin-top: 30px;
}

.site-nav-list {
  margin: 0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px 0;
}

.site-nav-item {
  list-style: none;
}

.site-nav-item:not(:last-child) {
  margin-right: 34px;
}

.site-nav-link {
  text-decoration: none;
  color: var(--nav-text-color);
  line-height: 21px;
}

.site-nav-link:hover {
  color: var(--black-color);
}

.site-nav-link:active {
  opacity: 0.6;
}

.site-nav-link.active {
  color: var(--black-color);
  font-weight: 700;
}

.site-nav-hr {
  border: 0;
  width: 100%;
  height: 1px;
  background-color: var(--header-hr-color);
  margin: 0 0 40px 0;
}

/* ===== AD BANNER ===== */
.header-ad {
  margin-bottom: 50px;
}

.header-ad img {
  border-radius: 10px;
}

.header-ad img:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

/* ===== CARDS SECTION (main page) ===== */
.main-cards-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
}

.main-cards-wrapper-margin {
  margin-bottom: 50px;
}

.cards-wrapper {
  background-color: var(--header-bg-color);
  border-radius: 15px;
  flex: 1;
  padding: 20px 17px;
  margin-bottom: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cards-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.cards-wrapper-h3-link {
  text-decoration: none;
}

.cards-wrapper-h3 {
  color: var(--black-color);
  font-size: 20px;
  line-height: 26px;
  margin-top: 0;
  margin-bottom: 10px;
}

.cards-wrapper-h3:hover {
  color: #3a0ca3;
}

.cards-wrapper-h3:active {
  opacity: 0.6;
}

.cards-wrapper-p {
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--card-text-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.cards-wrapper-img img {
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
  border-radius: 10px;
  width: 100%;
}

.cards-wrapper-img:hover {
  opacity: 0.8;
}

.company-icon-wrapper {
  display: flex;
  align-items: center;
}

.company-icon-wrapper img {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.company-icon-wrapper p {
  color: var(--card-company-color);
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  margin: 0;
}

/* ===== MORE INFO SECTION ===== */
.more-info-wrapper {
  margin-bottom: 60px;
}

.more-info-section {
  max-width: 100%;
  display: flex;
  border-radius: 10px;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(205, 197, 45);
  background-image: url(../img/bg-img.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.more-info-section h3 {
  margin: 24px 0 24px 29px;
  max-width: 404px;
  color: var(--black-color);
  font-size: 20px;
  line-height: 26px;
}

.more-info-section a {
  cursor: pointer;
  border-radius: 10px;
  background-color: var(--cta-button-bg-color);
  padding: 13px 30px;
  text-decoration: none;
  color: var(--white-color);
  font-size: 20px;
  line-height: 24px;
  margin: 25px 30px 25px 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.more-info-section a:hover {
  opacity: 0.8;
}

.more-info-section a:active {
  opacity: 0.6;
}

/* ===== CTA SECTION ===== */
.cta-section-container {
  margin-bottom: 100px;
  display: flex;
  padding: 0;
  gap: 10px;
}

.cta-h2 {
  margin: 0 0 20px 0;
  flex-grow: 1;
  color: var(--black-color);
  font-size: 24px;
  line-height: 28px;
}

.cta-cards-wrapper {
  flex: 1;
  min-width: 0;
}

.cta-card-list {
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 15px;
  background-color: var(--header-bg-color);
  padding: 20px 20px 20px 17px;
  margin-bottom: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card-list:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cta-card-list > img {
  border-radius: 10px;
  flex-shrink: 0;
  width: 210px;
  height: 165px;
  object-fit: cover;
}

.info-wrapper {
  margin-left: 15px;
  min-width: 0;
}

.info-wrapper h3 {
  margin: 0 0 10px 0;
  color: var(--black-color);
  font-size: 20px;
  line-height: 26px;
}

.info-wrapper a {
  text-decoration: none;
}

.info-wrapper h3:hover {
  color: #3a0ca3;
}

.info-wrapper h3:active {
  opacity: 0.6;
}

.info-wrapper p {
  margin: 0 0 20px 0;
  color: var(--card-text-color);
  font-weight: 400;
  line-height: 22px;
}

.cta-company-icon-wrapper {
  display: flex;
  align-items: center;
}

.cta-company-icon-wrapper img {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cta-company-icon-wrapper p {
  margin: 0;
  color: var(--card-company-color);
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}

/* ===== ASIDE SECTION ===== */
.aside-section-wrapper {
  width: 393px;
  flex-shrink: 0;
}

.aside-info-wrapper {
  margin-bottom: 10px;
  padding: 20px 17px 5px 17px;
  width: 100%;
  background-color: var(--header-bg-color);
  border-radius: 15px;
}

.aside-section-wrapper h2 {
  margin: 0 0 25px 0;
  color: var(--black-color);
  font-size: 22px;
  line-height: 28px;
}

.aside-info a {
  text-decoration: none;
}

.aside-info h3 {
  cursor: pointer;
  color: var(--black-color);
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 8px 0;
}

.aside-info h3:hover {
  color: #3a0ca3;
}

.aside-info h3:active {
  opacity: 0.6;
}

.aside-info p {
  margin: 0 0 20px 0;
  color: var(--card-company-color);
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
}

.aside-hr {
  width: 100%;
  border: none;
  background-color: var(--article-hr-color);
  height: 1px;
  margin: 0 0 20px 0;
}

.cta-more-info-button {
  cursor: pointer;
  border: 0;
  color: var(--black-color);
  line-height: 19px;
  padding: 17px 0;
  border-radius: 10px;
  width: 100%;
  background-color: var(--footer-button-bg-color);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.cta-more-info-button:hover {
  opacity: 0.8;
}

.cta-more-info-button:active {
  opacity: 0.6;
}

.aside-ad-img a img {
  border-radius: 10px;
}

.aside-ad-img a:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

/* ===== FOOTER ===== */
.site-footer {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: var(--footer-bg-color);
  margin-top: auto;
}

.site-footer-logo img {
  margin: 0 0 15px 0;
}

.site-footer-logo img:hover {
  opacity: 0.8;
}

.site-footer-logo img:active {
  opacity: 0.6;
}

.site-footer-nav {
  display: flex;
  margin-bottom: 30px;
}

.site-footer-info-wrapper {
  width: 229px;
  list-style: none;
  padding-left: 0;
  margin: 0;
  margin-right: 50px;
  flex-shrink: 0;
}

.site-footer-info {
  margin: 0;
}

.site-footer-info p {
  margin: 0;
  color: var(--white-color);
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
}

.site-footer-nav-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer-nav-item:not(:last-child) {
  margin-bottom: 20px;
}

.site-footer-nav-item:hover {
  opacity: 0.8;
}

.site-footer-nav-item:active {
  opacity: 0.6;
}

.site-footer-nav-link {
  text-decoration: none;
  color: var(--white-color);
  line-height: 19px;
}

.site-footer-hr {
  margin: 0;
  border: 0;
  height: 1px;
  background-color: var(--footer-hr-color);
  width: 100%;
  margin-bottom: 20px;
}

.socials-section-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.socials-section-wrapper h3 {
  color: var(--white-color);
  font-size: 18px;
  line-height: 23px;
  margin: 0;
}

.socials-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-item:hover {
  opacity: 0.8;
}

.social-item:active {
  opacity: 0.6;
}

.social-item:not(:last-child) {
  margin-right: 25px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  margin-bottom: 100px;
}

.contact-h2 {
  color: var(--black-color);
  font-size: 24px;
  line-height: 28px;
  margin: 0 0 20px 0;
}

.contact-items-wrapper {
  display: flex;
  gap: 10px;
}

.contact-inputs-wrapper {
  flex: 1;
  min-width: 0;
}

.contact-hr-bottom {
  margin-bottom: 60px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.contact-input-name-and-tel-wrapper {
  display: flex;
  padding-bottom: 10px;
  width: 100%;
  gap: 6px;
}

.contact-input-name-and-tel-wrapper input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 18px 20px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-input-name-and-tel-wrapper input:focus {
  border-color: var(--header-button-color);
}

.contact-email-input {
  border-radius: 10px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 18px 20px;
  margin-bottom: 10px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-email-input:focus {
  border-color: var(--header-button-color);
}

.contact-submit-button-wrapper {
  display: flex;
  justify-content: flex-end;
}

.contact-main-button {
  width: 100%;
  max-width: 145px;
  background-color: var(--footer-bg-color);
  cursor: pointer;
  border: 0;
  padding: 17px 30px;
  border-radius: 10px;
  color: var(--white-color);
  line-height: 19px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.contact-main-button:hover {
  opacity: 0.8;
}

.contact-main-button:active {
  opacity: 0.6;
}

.contact-textarea {
  border-radius: 10px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 18px 20px;
  margin-bottom: 10px;
  resize: none;
  min-height: 180px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-textarea:focus {
  border-color: var(--header-button-color);
}

.contact-address-section-wrapper {
  background-color: var(--header-bg-color);
  border-radius: 10px;
  padding: 40px 25px;
  width: 100%;
  max-width: 464px;
  flex-shrink: 0;
}

.email-wrapper h3,
.phone-number-wrapper h3,
.address-wrapper h3 {
  color: var(--black-color);
  font-size: 20px;
  margin: 0 0 7px 0;
  line-height: 24px;
}

.email-wrapper p,
.phone-number-wrapper p,
.address-wrapper p {
  margin: 0 0 20px 0;
  color: var(--black-color);
  font-weight: 400;
  line-height: 19px;
}

.address-wrapper p {
  margin-bottom: 0;
}

.contact-address-hr {
  margin: 0 0 20px 0;
  border: 0;
  height: 1px;
  background-color: var(--header-hr-color);
}

/* ===== ARTICLE PAGE ===== */
.article-section-hr {
  margin-bottom: 50px;
}

.article-main-section-container {
  display: flex;
  gap: 10px;
}

.article-info-wrapper {
  flex: 1;
  min-width: 0;
  margin-bottom: 60px;
}

.article-logo-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.article-logo-wrapper img {
  margin-right: 10px;
}

.article-logo-wrapper p {
  color: var(--card-company-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  margin: 0;
}

.article-card-title {
  color: var(--black-color);
  font-size: 26px;
  font-weight: 500;
  line-height: 36px;
  margin: 0 0 20px 0;
}

.article-card-wrapper img {
  margin-bottom: 25px;
  border-radius: 10px;
}

.article-card-wrapper p {
  color: var(--black-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin: 0 0 24px 0;
}

.article-card-hr {
  border: 1px solid var(--article-hr-color);
  margin: 50px 0 0 0;
}

/* ===== SUGGESTION SECTION ===== */
.suggestion-section-container {
  margin-bottom: 100px;
}

.suggestion-section-container h2 {
  color: var(--black-color);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 20px 0;
  line-height: 28px;
}

.suggestion-cards-wrapper {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.suggestion-card-wrapper {
  background-color: var(--card-bg-color);
  border-radius: 15px;
  flex: 1;
  padding: 20px 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.suggestion-card-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.suggestion-card-wrapper a {
  text-decoration: none;
}

.suggestion-card-wrapper h3:hover {
  color: var(--footer-bg-color);
}

.suggestion-card-wrapper h3 {
  color: var(--black-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  margin: 0 0 10px 0;
}

.suggestion-card-wrapper p {
  color: var(--black-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin: 0 0 23px 0;
}

.suggestion-card-icon {
  display: flex;
  align-items: center;
}

.suggestion-card-icon img {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.suggestion-card-icon p {
  margin: 0;
  color: var(--card-company-color);
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet - landscape */
@media (max-width: 1024px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .header-container {
    flex-wrap: wrap;
    gap: 15px;
  }

  .header-logo-wrapper a {
    width: 220px;
    margin-right: 20px;
  }

  .header-input-wrapper input {
    width: 200px;
  }

  .site-nav-item:not(:last-child) {
    margin-right: 20px;
  }

  .main-cards-wrapper {
    flex-wrap: wrap;
  }

  .cards-wrapper {
    flex: 1 1 calc(50% - 10px);
    min-width: 280px;
  }

  .cta-section-container {
    flex-direction: column;
  }

  .aside-section-wrapper {
    width: 100%;
  }

  .aside-info-wrapper {
    max-width: 100%;
  }

  .cta-card-list > img {
    width: 180px;
    height: 140px;
  }

  .contact-address-section-wrapper {
    max-width: 100%;
  }

  .article-main-section-container {
    flex-direction: column;
  }

  .aside-section-wrapper {
    width: 100%;
  }

  .site-footer-info-wrapper {
    margin-right: 30px;
  }
}

/* Tablet - portrait */
@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-container {
    flex-direction: column;
    align-items: stretch;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .header-logo-wrapper {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
  }

  .header-logo-wrapper a {
    width: 220px;
    margin-right: 0;
  }

  .header-input-wrapper {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .header-input-wrapper input {
    width: 100%;
    max-width: 300px;
    margin-right: 0;
  }

  .translate-wrapper {
    margin-right: 10px;
  }

  .site-nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .site-nav-item:not(:last-child) {
    margin-right: 15px;
  }

  .site-nav-hr {
    margin-bottom: 25px;
  }

  .main-cards-wrapper {
    flex-direction: column;
  }

  .cards-wrapper {
    flex: 1 1 100%;
  }

  .more-info-section {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .more-info-section h3 {
    margin: 0 0 15px 0;
    width: 100%;
  }

  .more-info-section a {
    margin: 0;
  }

  .cta-card-list {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-card-list > img {
    width: 100%;
    height: 200px;
  }

  .info-wrapper {
    margin-left: 0;
    margin-top: 15px;
  }

  .cta-company-icon-wrapper {
    margin-top: 10px;
  }

  .contact-items-wrapper {
    flex-direction: column;
  }

  .contact-address-section-wrapper {
    max-width: 100%;
  }

  .contact-input-name-and-tel-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .site-footer-nav {
    flex-direction: column;
    gap: 20px;
  }

  .site-footer-info-wrapper {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .socials-section-wrapper {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .suggestion-cards-wrapper {
    flex-direction: column;
  }

  .article-card-title {
    font-size: 22px;
    line-height: 30px;
  }

  .article-card-wrapper p {
    font-size: 16px;
    line-height: 26px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header-logo-wrapper a {
    width: 180px;
  }

  .header-money-wrapper {
    font-size: 14px;
  }

  .header-money-wrapper:not(:last-child) {
    margin-right: 15px;
  }

  .site-nav-item:not(:last-child) {
    margin-right: 10px;
  }

  .site-nav-link {
    font-size: 14px;
  }

  .cta-h2 {
    font-size: 20px;
  }

  .cards-wrapper-h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .info-wrapper h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .aside-info h3 {
    font-size: 16px;
    line-height: 22px;
  }

  .contact-h2 {
    font-size: 20px;
  }

  .article-card-title {
    font-size: 20px;
    line-height: 28px;
  }

  .loader-logo {
    width: 150px;
  }
}

/* ===== FOCUS STYLES (Accessibility) ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--header-button-color);
  outline-offset: 2px;
}
