:root {
  --bg: #1f1f1f;
  --dark: #121212;
  --text: #eee;
  --accent: #d81b60;
  --accent-light: #f48fb1;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
.container {
  max-width: var(--max-width);
  padding: 0 1rem;
  margin: 0 auto;
}

#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}
.loader-logo {
  width: 60px;
  animation: spin 1s linear infinite;
}
.loader-text {
  margin-top: 0.75rem;
  font-family: "Roboto Slab", serif;
  color: var(--accent);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition);
  z-index: 1000;
}
.site-header.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: "Roboto Slab", serif;
  font-size: 1.75rem;
  color: var(--accent);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}
.site-nav {
  display: flex;
}
.site-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.site-nav a {
  color: var(--text);
  transition: color var(--transition);
}
.site-nav a:hover,
.site-nav .active {
  color: var(--accent-light);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right var(--transition);
  }
  .site-nav.open {
    right: 0;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
}
.scroll-to-top.visible {
  opacity: 1;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform var(--transition), background var(--transition);
}
.btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.site-footer {
  background: var(--dark);
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 4rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-logo p {
  font-size: 1rem;
  color: var(--text);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.footer-links a {
  color: var(--text);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-copy {
  font-size: 0.8rem;
  color: #888;
}

a {
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

.cookies-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--text);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2000;
  opacity: 1;
  visibility: visible;
  transition: opacity var(--transition), visibility var(--transition);
}
.cookies-banner.hidden {
  opacity: 0;
  visibility: hidden;
}
.cookies-banner p {
  margin: 0;
  font-size: 0.95rem;
}
.cookies-button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
}
.cookies-button:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.footer-logo img {
  max-width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero-slider {
  position: relative;
  height: 85vh;
  overflow: hidden;
  background: var(--dark);
}
.hero-slider .slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slideShow 18s infinite;
}
.hero-slider .slide:nth-child(1) {
  animation-delay: 0s;
}
.hero-slider .slide:nth-child(2) {
  animation-delay: 6s;
}
.hero-slider .slide:nth-child(3) {
  animation-delay: 12s;
}
.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

@keyframes slideShow {
  0%,
  5% {
    opacity: 0;
  }
  5%,
  30% {
    opacity: 1;
  }
  30%,
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  max-width: var(--max-width);
  width: 90%;
  padding: 0 1rem;
  animation: fadeInUp 1s ease both;
}
.hero-overlay h1 {
  font-family: "Roboto Slab", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-overlay p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.hero-overlay .btn {
  background: var(--accent);
  padding: 0.75rem 2rem;
}
.hero-overlay .btn:hover {
  background: var(--accent-light);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 1024px) {
  .hero-overlay h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2rem;
  }
  .hero-overlay p {
    font-size: 1rem;
  }
}

.about-section {
  padding: 6rem 1rem;
  background: var(--bg);
}
.about-section__title {
  font-family: "Roboto Slab", serif;
  font-size: 2.75rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 1rem;
}
.about-section__text {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text);
  text-align: center;
}
.about-section__features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.feature-item {
  flex: 1 1 260px;
  background: var(--dark);
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: transform var(--transition), background var(--transition);
}
.feature-item h3 {
  font-family: "Roboto Slab", serif;
  font-size: 1.5rem;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}
.feature-item p {
  font-size: 1rem;
  color: var(--text);
}
.feature-item:hover {
  transform: translateY(-5px);
  background: var(--accent);
  color: #fff;
}
.feature-item:hover h3,
.feature-item:hover p {
  color: #fff;
}

@media (max-width: 768px) {
  .about-section__features {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.gallery-section {
  padding: 6rem 1rem;
  background: var(--bg);
}
.gallery-section__title {
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.gallery-card:hover img {
  transform: scale(1.05);
}
.gallery-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem;
  background: rgba(216, 27, 96, 0.8);
  color: #fff;
  text-align: center;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery-card:hover .gallery-card__overlay {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.programs-section {
  padding: 6rem 1rem;
  background: var(--dark);
  color: var(--text);
}
.programs__title {
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 2rem;
}
.programs-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}
.programs-scroll::-webkit-scrollbar {
  height: 8px;
}
.programs-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.programs-scroll::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

.program-card {
  flex: 0 0 280px;
  background: var(--bg);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
  scroll-snap-align: start;
}
.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.program-card h3 {
  font-family: "Roboto Slab", serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--accent-light);
}
.program-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.program-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}
.program-card ul li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
}
.program-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.program-card .btn {
  font-size: 0.9rem;
  padding: 0.5rem 1.5rem;
}
@media (max-width: 768px) {
  .programs-scroll {
    gap: 1rem;
  }
  .program-card {
    flex: 0 0 240px;
  }
}

.trainers-section {
  padding: 6rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(216, 27, 96, 0.2),
    rgba(216, 27, 96, 0.05)
  );
}
.trainers__title {
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-size: 2.75rem;
  color: var(--accent);
  margin-bottom: 2rem;
  position: relative;
}
.trainers__title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-light);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.trainers__gallery {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.trainer {
  text-align: center;
  max-width: 220px;
  position: relative;
  transition: transform var(--transition);
}
.trainer:hover {
  transform: translateY(-10px);
}

.trainer__photo {
  width: 160px;
  height: 160px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: box-shadow var(--transition);
}
.trainer:hover .trainer__photo {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.trainer__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trainer__name {
  font-family: "Roboto Slab", serif;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.trainer__specialty {
  font-size: 0.95rem;
  color: var(--accent-light);
}

@media (max-width: 768px) {
  .trainers__gallery {
    gap: 2rem;
  }
  .trainer {
    max-width: 180px;
  }
  .trainer__photo {
    width: 140px;
    height: 140px;
  }
}

.testimonials-section {
  padding: 6rem 1rem;
  background: var(--bg);
  color: var(--text);
}
.testimonials__title {
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-size: 2.75rem;
  color: var(--accent);
  margin-bottom: 3rem;
  position: relative;
}
.testimonials__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-light);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.testimonials__cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.testimonial-card {
  background: var(--dark);
  padding: 2rem;
  max-width: 320px;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.quote-icon {
  font-size: 4rem;
  color: var(--accent-light);
  position: absolute;
  top: -10px;
  left: -10px;
  opacity: 0.1;
}
.testimonial-card__text {
  font-size: 1rem;
  line-height: 1.6;
  margin: 1.5rem 0;
}
.testimonial-card__author {
  text-align: right;
  font-size: 0.9rem;
  color: var(--accent);
}

@media (max-width: 768px) {
  .testimonials__cards {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

.schedule-section {
  padding: 6rem 1rem;
  background: var(--bg);
  color: var(--text);
}
.schedule__title {
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-size: 2.75rem;
  color: var(--accent);
  margin-bottom: 2.5rem;
  position: relative;
}
.schedule__title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-light);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.schedule-day {
  background: var(--dark);
  padding: 1.5rem 1rem;
  border-radius: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.schedule-day:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.schedule-day h3 {
  font-family: "Roboto Slab", serif;
  font-size: 1.25rem;
  color: var(--accent-light);
  text-align: center;
  margin-bottom: 1rem;
}
.schedule-day ul {
  list-style: none;
  padding-left: 0;
}
.schedule-day ul li {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.schedule-day ul li time {
  display: inline-block;
  width: 50px;
  font-weight: 500;
  color: var(--accent);
  margin-right: 0.5rem;
}
.off-day {
  text-align: center;
  font-style: italic;
  color: var(--accent-light);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .schedule-day {
    padding: 1rem;
  }
  .schedule-day h3 {
    font-size: 1.1rem;
  }
  .schedule-day ul li {
    font-size: 0.9rem;
  }
}

.contact-section {
  padding: 6rem 1rem;
  background: var(--dark);
  color: var(--text);
}
.contact__title {
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-size: 2.75rem;
  color: var(--accent);
  margin-bottom: 2rem;
  position: relative;
}
.contact__title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-light);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 2rem auto 1rem;
}
.contact__card {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.contact__card .icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}
.contact__card h3 {
  font-family: "Roboto Slab", serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--accent-light);
}
.contact__card p {
  font-size: 1rem;
  line-height: 1.5;
}
.contact__card a {
  color: var(--text);
  text-decoration: underline;
  transition: color var(--transition);
}
.contact__card a:hover {
  color: var(--accent);
}

.contact__socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.contact__socials .icon {
  font-size: 1.75rem;
  color: var(--text);
  transition: color var(--transition), transform var(--transition);
}
.contact__socials a:hover .icon {
  color: var(--accent);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

.program-details-section {
  padding: 6rem 1rem;
  background: var(--bg);
  color: var(--text);
}
.program-details__title {
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-size: 2.75rem;
  color: var(--accent);
  margin-bottom: 3rem;
}
.program-details__item {
  background: var(--dark);
  padding: 2rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.program-details__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.program-details__item h3 {
  font-family: "Roboto Slab", serif;
  font-size: 1.75rem;
  color: var(--accent-light);
  margin-bottom: 1rem;
}
.program-details__item ul {
  list-style: none;
  padding-left: 0;
}
.program-details__item > ul > li {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.program-details__item > ul > li strong {
  color: var(--accent);
}
.program-details__item ul ul {
  margin-top: 0.5rem;
  margin-left: 1.5rem;
}
.program-details__item ul ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .program-details__item {
    padding: 1.5rem;
  }
  .program-details__item h3 {
    font-size: 1.5rem;
  }
}

.about-us-full {
  padding: 6rem 1rem;
  background: var(--dark);
  color: var(--text);
}

.about-us-full__title {
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 2rem;
  position: relative;
}
.about-us-full__title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: var(--accent-light);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.about-us-full__intro p {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text);
  text-align: center;
}

.about-us-full__images {
  display: flex;
  gap: 1rem;
  margin: 3rem 0;
  justify-content: center;
  flex-wrap: wrap;
}
.about-us-full__image {
  flex: 1 1 calc(33% - 1rem);
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-us-full__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.about-us-full__image:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.about-us-full__image:hover img {
  transform: scale(1.05);
}

.about-us-full__details {
  display: flex;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 3rem auto 0;
  flex-wrap: wrap;
}
.about-us-full__values,
.about-us-full__info {
  flex: 1 1 300px;
}

.about-us-full__values h3,
.about-us-full__info h3 {
  font-family: "Roboto Slab", serif;
  font-size: 1.75rem;
  color: var(--accent-light);
  margin-bottom: 1rem;
}
.about-us-full__values ul,
.about-us-full__info p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
}

.about-us-full__values ul {
  list-style: none;
  padding-left: 0;
}
.about-us-full__values li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}
.about-us-full__values li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

@media (max-width: 1024px) {
  .about-us-full__details {
    flex-direction: column;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .about-us-full__images {
    flex-direction: column;
    gap: 1.5rem;
  }
  .about-us-full__image {
    flex: 1 1 100%;
  }
}

.title_background {
  background: var(--dark);
  padding: 4rem 1rem;
}
.title_background .container {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.title_background .title {
  font-family: "Roboto Slab", serif;
  font-size: 2rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.title_background .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-light);
  border-radius: 2px;
}

.text_background {
  background: var(--bg);
  padding: 3rem 1rem 5rem;
}
.text_background .container {
  max-width: var(--max-width);
  margin: 0 auto;
}
.text_background .text {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  text-align: left;
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
  white-space: pre-wrap;
  position: relative;
}
.text_background .text::first-letter {
  font-family: "Roboto Slab", serif;
  font-size: 3rem;
  color: var(--accent-light);
  float: left;
  line-height: 1;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .title_background .title {
    font-size: 1.75rem;
    letter-spacing: 0.08em;
  }
  .text_background .text {
    font-size: 0.95rem;
    line-height: 1.6;
    border-left: none;
    padding-left: 0;
  }
}
