/* Base styles */
body {
  font-family: 'Roboto', sans-serif;
  font-size: 14px; /* немного уменьшенный базовый размер шрифта */
  background-color: rgba(34, 34, 34, 1);
  color: #ffffff;
  margin: 0;
  padding: 0;
}

a {
  color: #f7d7c8;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #ffffff;
}

/* Navbar */
.navbar {
  background-color: rgba(34, 34, 34, 1) !important;
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* Header */
.header-section {
  min-height: 100vh;
  background: url('images/header-section.jpg') no-repeat center center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.header-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 34, 34, 0.7);
  z-index: 1;
}
.header-section .container {
  position: relative;
  z-index: 2;
}
header {
	position: relative;
}

header .logo {
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	max-width: 250px;
}
header .logo a {
	display: block;
}
header .logo a img{
	width: 100%;
	height: auto;
}

/* Buttons */
.btn-highlight {
  background-color: #f7d7c8;
  border: 1px solid #f7d7c8;
  color: rgba(34, 34, 34, 1);
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-highlight:hover {
  background-color: #e0c2b2;
  color: rgba(34, 34, 34, 1);
}

/* Accent Color */
.text-highlight {
  color: #f7d7c8;
}

/* Tariff Cards */
.tariff-card {
  padding: 3rem;  /* Увеличенные отступы внутри карточек */
  border-radius: 10px;
}
.tariff-card .card-body {
  padding-bottom: 0;
}

/* Two-column list for "Почему выбирают наш сервис" */
.two-columns {
  column-count: 2;
  column-gap: 2rem;
}

/* FAQ Accordion */
.accordion-button {
  background-color: #f7d7c8;
  color: rgba(34, 34, 34, 1);
  font-size: 1rem;
}
.accordion-button:not(.collapsed) {
  background-color: #e0c2b2;
  color: rgba(34, 34, 34, 1);
}
.accordion-body {
  background-color: rgba(34, 34, 34, 1);
}

/* Testimonials */
.testimonial {
  border-left: 4px solid #f7d7c8;
}

/* Contacts: Увеличенный размер шрифта */
#contacts p, 
#contacts a {
  font-size: 1.25rem;
}

/* Footer */
footer {
  background-color: rgba(34, 34, 34, 1);
}

/* Анимация появления блоков при скролле */
.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Увеличенный вертикальный отступ для секций */
section {
  padding-top: 120px;
  padding-bottom: 120px;
}


.bg-secondary {
	background-color: rgb(57, 57, 57) !important;
}

.accordion-button.bg-secondary.text-dark {
	color: #fff !important;
}

.py-5 {
	padding: 6rem 0 !important;
}