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

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--color-text-dark);
  background: var(--color-bg-main);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-style: italic;
  width: 100%;
  min-width: 320px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--r-md);
}

.hero {
  position: relative;
  width: 100%;
}

.hero-logo {
  position: absolute;
  top: 20px;
  left: 20%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  background: white;
  padding: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  z-index: 2;
  transition: all var(--trans);
}

.hero-logo:hover {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

@media (min-width: 769px) {
  .hero-logo {
    left: 150px !important;
    transform: none;
    width: 250px;
    height: 250px;
  }

  .hero-logo:hover {
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .hero-logo {
    width: 160px;
    height: 160px;
    top: 15px;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    width: 120px;
    height: 120px;
    top: 10px;
  }
}

.hero__image img,
.feature-card__image img,
.news-card__image img {
  border-radius: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans);
}

button {
  font-family: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  font-style: italic;
}

address {
  font-style: italic;
}

p,
li,
span,
time {
  font-style: italic;
}

strong,
b {
  font-weight: 700;
  font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--s-md);
}

@media (min-width: 1600px) {
  .container {
    max-width: 1600px;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 var(--s-md);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--s-sm);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--s-xs);
  }
}

.section {
  padding: var(--s-2xl) 0;
  width: 100%;
}

.section-title {
  font-size: 56px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--s-md);
  color: var(--color-text-dark);
  font-style: italic;
}

.section-subtitle {
  font-size: 22px;
  font-style: italic;
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--s-xl);
}

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

.u-row {
  display: flex;
  gap: var(--s-md);
  align-items: center;
}

.u-stack {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
}

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

@media (max-width: 768px) {
  .section {
    padding: var(--s-xl) 0;
  }

  .section-title {
    font-size: 40px;
  }

  .section-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: var(--s-lg) 0;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }
}
