:root {
  --bg-color: #202020;
  --text-color: #e6e6e6;
  --accent-color-1: #c85858;
  --accent-color-2: #ff5454;
  --primary-color: #b11919;
  --white: #ffffff;
  --dark: #333333;
  --light-gray: #f8f9fa;
  --border-color: #e0e0e0;
  --card-bg: rgba(65, 25, 25, 0.7);
  --section-spacing: 6rem;
  --element-spacing: 2rem;
  --transition: all 0.3s ease;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background: #202020;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #e6e6e6;
}
h1, h2, h3, h4, h5, h6 {
   font-family: "Mulish", sans-serif;
}

hr {
  height: 0;
  color: #eee;
  border: 1px solid #eee;
  margin: 2em 0 1em;
}
.container {
  max-width: 990px;
  padding: 0 15px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 15px;
  position: relative;
}
.input-text {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.input-subscribe {
  padding-right: 100px;
}
.btn-subscribe {
  color: #fff;
  background-color: #b18919;
  border-color: #b18919;
  cursor: pointer;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 0 10px;
  border: none;
  border-bottom-right-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.header {
  background-color: #740000;
  padding: 30px 0;
  position: relative;
  border-bottom: #b18919;

}
.header__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header__logo a {
  color: #000000;
  font-size: 160%;
  font-weight: 700;
  text-decoration: none;
  color: #ffddf6;
}
.nav {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
}
.nav > li {
  margin-right: 30px;
}
.nav > li:last-child {
  margin-right: 0;
}
.nav > li > a {
  text-decoration: none;
  color: #b1b1b1;

}
.main {
  padding: 40px 0;
}


.btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background-color: #0088c7;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 110%;
  transition: background-color 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 136, 199, 0.3);
}

.btn-primary:hover {
  background-color: #006699;
  box-shadow: 0 5px 15px rgba(0, 136, 199, 0.4);
}


@media (max-width: 990px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 769px) {
  .btn__open-nav {
    display: none;
  }
}
@media (max-width: 768px) {

  .btn__open-nav {
    display: block;
    border: none;
    background: none;
    width: 40px;
  }
  .btn__open-nav span {
    display: block;
    background-color: #fff;
    width: 100%;
    height: 5px;
    margin-bottom: 6px;
  }
  .btn__open-nav span:last-child {
    margin-bottom: 0;
  }
  .nav {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 100%;
    z-index: 1;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 11;
    display: none;
  }
  .nav.open {
    display: block;
  }
  .nav > li {
    width: 100%;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
  }
  .nav > li > a {
    display: block;
    padding: 15px 15px;
  }
  
  .contact-section {
    padding: 30px 0;
  }
  .contact-section__row {
    flex-wrap: wrap;
    margin: 0 -15px -30px;
  }
  .contact-section__col {
    width: 100%;
    padding: 0 15px 30px;
  }
  .subscribe-form h3 {
    text-align: center;
  }

  .features__row {
    margin: 0 -15px -20px;
  }

  
  .icon-placeholder {
    font-size: 2.5rem;
  }
  
  .feature-item__content h3 {
    font-size: 120%;
  }
}
/* Cookie Popup styles */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-popup-text {
  flex: 1;
  color: #ffffff;
}

.cookie-popup-text h4 {
  margin: 0 0 10px 0;
  font-size: 120%;
  font-weight: 600;
  color: #ffffff;
}

.cookie-popup-text p {
  margin: 0;
  line-height: 1.5;
  font-size: 95%;
  color: #e0e0e0;
}

.cookie-popup-text a {
  color: #4fc3f7;
  text-decoration: underline;
}

.cookie-popup-text a:hover {
  color: #29b6f6;
  text-decoration: none;
}

.cookie-popup-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 95%;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.cookie-btn-accept {
  background-color: #b18919;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background-color: #3535d1;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(66, 66, 234, 0.4);
}

.cookie-btn-reject {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #666666;
}

.cookie-btn-reject:hover {
  background-color: #666666;
  border-color: #888888;
  transform: translateY(-2px);
}

/* Mobile adaptation for cookie popup */
@media (max-width: 768px) {
  .cookie-popup {
    padding: 15px;
  }
  
  .cookie-popup-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .cookie-popup-text h4 {
    font-size: 110%;
  }
  
  .cookie-popup-text p {
    font-size: 90%;
  }
  
  .cookie-popup-actions {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 100px;
    padding: 10px 20px;
    font-size: 90%;
  }
}

@media (max-width: 480px) {
  .cookie-popup-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

/* Thank You Page styles */
.thank-you-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
  margin-bottom: 2rem;
}

.thank-you-icon i {
  font-size: 4rem;
  color: #4caf50;
  background: rgba(76, 175, 80, 0.1);
  padding: 1rem;
  border-radius: 50%;
  display: inline-block;
}

.thank-you-content h1 {
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  font-weight: 700;
}

.thank-you-content p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.thank-you-content p:last-of-type {
  margin-bottom: 2.5rem;
}

.thank-you-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  text-decoration: none;
  background: #740000;
  color: var(--white);
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(66, 66, 234, 0.3);
}

.thank-you-actions .btn-primary:hover {
  background: #3545d1;
  transform: translateY(-3px);
  color: var(--white);
}

.thank-you-actions .btn-primary i {
  font-size: 1.2rem;
}

/* Mobile adaptation for thank you page */
@media (max-width: 768px) {
  .thank-you-section {
    padding: 4rem 0;
  }
  
  .thank-you-content {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .thank-you-content h1 {
    font-size: 1.8rem;
  }
  
  .thank-you-content p {
    font-size: 1rem;
  }
  
  .thank-you-icon i {
    font-size: 3rem;
    padding: 0.8rem;
  }
}

@media (max-width: 480px) {
  .thank-you-content {
    padding: 1.5rem 1rem;
  }
  
  .thank-you-content h1 {
    font-size: 1.6rem;
  }
  
  .thank-you-actions .btn-primary {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/*# sourceMappingURL=styles.css.map*/


/* Стили для футера */
.footer-section {
  background-color: #dbdbdb;
  color: #333333;
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2));
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col {
  position: relative;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color-2);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #202020;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color-1);
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: #555555;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  padding-left: 0;
}

.footer-nav a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color-2);
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--accent-color-2);
  padding-left: 5px;
}

.footer-nav a:hover::before {
  width: 100%;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-item .material-icons {
  color: var(--accent-color-1);
  margin-right: 0.75rem;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1.5rem;
}

.footer-legal .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal .footer-nav li {
  margin-bottom: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: #777777;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-legal .footer-nav {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* new styles  */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.accent-text {
  color: var(--accent-color-1);
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(177, 25, 25, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-color-2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 84, 84, 0.4);
}

/* Стилі для головного екрану */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  z-index: -1;
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 1;
  padding: 2rem;
  border-radius: 10px;
  background-color: rgba(32, 32, 32, 0.8);
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.5s ease-out;
}

.hero-content:hover {
  transform: translateY(-5px);
}

.hero-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-title span {
  color: var(--accent-color-1);
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  font-weight: 400;
  color: var(--accent-color-1);
}

.hero-description {
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Медіазапити для адаптивності */
@media (max-width: 992px) {
  .hero-content {
    max-width: 600px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: 60px;
  }
  
  .hero-content {
    padding: 1.5rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .btn {
    padding: 0.8rem 2rem;
    width: 100%;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 1.6rem;
  }
}
/* Стилі для блоку "Здоровье начинается с тарелки" */
.intro-section {
  padding: var(--section-spacing) 0;
  position: relative;
  background-color: var(--dark);
}

.intro-subtitle {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--accent-color-1);
  font-weight: 600;
  position: relative;
  padding-bottom: 1.5rem;
  text-align: center;
}

.intro-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Стилі для блоку "Что такое веганское питание?" */
.info-section {
  padding: var(--section-spacing) 0;
  background-color: var(--bg-color);
}

.info-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.info-image {
  flex: 1;
  min-width: 300px;
}

.info-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
}

.info-image img:hover {
  transform: scale(1.02);
}

.info-content {
  flex: 1;
  min-width: 300px;
}

.info-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-weight: 600;
  position: relative;
  padding-bottom: 1rem;
}

.info-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color-1);
  border-radius: 3px;
}

.info-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.info-list {
  list-style: none;
  margin-bottom: 2rem;
}

.info-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.info-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-color-1);
}

.info-footnote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-color);
  font-style: italic;
}

/* Медіазапити для нових блоків */
@media (max-width: 992px) {
  .intro-subtitle,
  .info-title {
    font-size: 2rem;
  }
  
  .info-container {
    flex-direction: column-reverse;
  }
  
  .info-content,
  .info-image {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .intro-subtitle,
  .info-title {
    font-size: 1.8rem;
  }
  
  .intro-text,
  .info-text,
  .info-list li,
  .info-footnote {
    font-size: 1rem;
  }
  
  .intro-section,
  .info-section {
    padding: calc(var(--section-spacing) * 0.7) 0;
  }
}

@media (max-width: 576px) {
  .intro-subtitle,
  .info-title {
    font-size: 1.6rem;
    padding-bottom: 1rem;
  }
  
  .intro-subtitle::after,
  .info-title::after {
    width: 50px;
    height: 2px;
  }
  
  .intro-text,
  .info-text,
  .info-list li,
  .info-footnote {
    font-size: 0.95rem;
  }
  
  .info-list li {
    padding-left: 1.5rem;
  }
  
  .info-list li::before {
    width: 6px;
    height: 6px;
  }
}
/* Стилі для блоку "Примеры рационов" */
.menu-section {
  padding: var(--section-spacing) 0;
  background-color: var(--dark);
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 3rem;
  color: var(--white);
  text-align: center;
  font-weight: 600;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color-1);
  border-radius: 3px;
}

.menu-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.menu-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(177, 25, 25, 0.3);
}

.menu-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-card-content {
  padding: 1.5rem;
}

.menu-card-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--accent-color-1);
  font-weight: 600;
}

.menu-card-text {
  font-size: 1rem;
  line-height: 1.6;
}

.menu-example {
  margin-top: 3rem;
  background-color: rgba(65, 25, 25, 0.4);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent-color-1);
}

.menu-example-title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color-1);
  font-weight: 600;
}

.menu-example-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.menu-example-item {
  display: flex;
  align-items: flex-start;
}

.menu-example-item i {
  color: var(--accent-color-1);
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

.menu-meal-type {
  font-weight: 600;
  margin-right: 0.5rem;
}

/* Стилі для блоку "Польза для здоровья" */
.benefits-section {
  padding: var(--section-spacing) 0;
  background-color: var(--bg-color);
}

.benefits-text {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.benefits-list {
  list-style: none;
  margin-bottom: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-list li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.benefits-list li i {
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 1.5rem;
  color: var(--accent-color-1);
}

.benefits-footnote {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-color);
  max-width: 900px;
  margin: 0 auto;
  opacity: 0.8;
  font-style: italic;
}

.benefits-citation {
  display: inline-block;
  vertical-align: super;
  font-size: 0.8rem;
  color: var(--accent-color-1);
  margin-left: 2px;
}

/* Стилі для блоку "Как работает доставка" */
.delivery-section {
  padding: var(--section-spacing) 0;
  background-color: var(--dark);
}

.delivery-process {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.delivery-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(200, 88, 88, 0.3);
}

.delivery-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.delivery-step-number {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 1.5rem;
}

.delivery-step-content {
  flex: 1;
}

.delivery-step-title {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--accent-color-1);
  font-weight: 600;
}

.delivery-step-text {
  font-size: 1.05rem;
  line-height: 1.6;
}

.delivery-cities {
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Медіазапити для нових блоків */
@media (max-width: 992px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .menu-example-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .menu-intro,
  .benefits-text,
  .delivery-step-text,
  .delivery-cities {
    font-size: 1rem;
  }
  
  .menu-example {
    padding: 1.5rem;
  }
  
  .menu-example-title {
    font-size: 1.3rem;
  }
  
  .benefits-list li {
    font-size: 1rem;
    padding-left: 2.5rem;
  }
  
  .benefits-list li i {
    font-size: 1.3rem;
  }
  
  .delivery-step-number {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
  
  .delivery-step-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .menu-card-title,
  .delivery-step-title {
    font-size: 1.1rem;
  }
  
  .menu-example-title {
    font-size: 1.2rem;
  }
  
  .delivery-step {
    flex-direction: column;
  }
  
  .delivery-step-number {
    margin-bottom: 1rem;
  }
  
  .benefits-list li {
    padding-left: 2.3rem;
  }
  
  .benefits-list li i {
    font-size: 1.2rem;
  }
}
/* Стилі для блоку "Вопросы и ответы (FAQ)" */
.faq-section {
  padding: var(--section-spacing) 0;
  background-color: var(--bg-color);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(200, 88, 88, 0.2);
  padding-bottom: 2rem;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-color-1);
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.faq-question-number {
  font-weight: 700;
  margin-right: 0.8rem;
}

.faq-answer {
  font-size: 1.05rem;
  line-height: 1.7;
  padding-left: 1.8rem;
}

/* Стилі для блоків "Кто мы", "Наши ценности", "Миссия проекта" */
.about-section {
  padding: var(--section-spacing) 0;
  position: relative;
}

.about-section:nth-of-type(odd) {
  background-color: var(--dark);
}

.about-section:nth-of-type(even) {
  background-color: var(--bg-color);
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.about-section:nth-of-type(even) .about-container {
  flex-direction: row-reverse;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 0 0 350px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
}

.about-image:hover {
  transform: scale(1.02);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-section:nth-of-type(odd) .about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(177, 25, 25, 0.6), transparent);
}

.about-section:nth-of-type(even) .about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(32, 32, 32, 0.7), transparent);
}

.about-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-weight: 600;
  position: relative;
  padding-bottom: 1rem;
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color-1);
  border-radius: 3px;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-text:last-child {
  margin-bottom: 0;
}

/* Медіазапити для нових блоків */
@media (max-width: 992px) {
  .about-title {
    font-size: 2rem;
  }
  
  .about-image {
    flex: 0 0 300px;
  }
}

@media (max-width: 768px) {
  .about-container,
  .about-section:nth-of-type(even) .about-container {
    flex-direction: column;
  }
  
  .about-content,
  .about-image {
    width: 100%;
  }
  
  .about-image {
    max-height: 300px;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .about-text,
  .faq-answer {
    font-size: 1rem;
  }
  
  .faq-question {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 1.6rem;
  }
  
  .about-image {
    max-height: 250px;
  }
  
  .faq-answer {
    padding-left: 1.5rem;
  }
}
/* Стилі для головного екрану сторінки "О нас" */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-color);
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/car-maintenance-principles.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
  z-index: 0;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, var(--bg-color), transparent);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 3rem 2rem;
  border-left: 5px solid var(--accent-color-1);
}

.about-hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
  line-height: 1.1;
  opacity: 0.9;
}

.about-hero-subtitle {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color-1);
  font-weight: 600;
}

.about-hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-color);
  max-width: 800px;
}

.about-page-title {
  position: absolute;
  top: 3rem;
  left: 3rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color-1);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 2px solid var(--accent-color-1);
  z-index: 2;
}

.about-hero-divider {
  width: 150px;
  height: 3px;
  background-color: var(--accent-color-1);
  margin: 1.5rem 0 2rem;
}

/* Анімація для заголовка */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-hero-title {
  animation: fadeInUp 0.8s ease-out forwards;
}

.about-hero-subtitle {
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.about-hero-divider {
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.about-hero-description {
  animation: fadeInUp 0.8s ease-out 0.7s forwards;
  opacity: 0;
  transform: translateY(20px);
}

/* Медіазапити для адаптивності */
@media (max-width: 992px) {
  .about-hero-title {
    font-size: 3.5rem;
  }
  
  .about-hero-subtitle {
    font-size: 2rem;
  }
  
  .about-page-title {
    top: 2rem;
    left: 2rem;
  }
}

@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2.8rem;
  }
  
  .about-hero-subtitle {
    font-size: 1.8rem;
  }
  
  .about-hero-description {
    font-size: 1.1rem;
  }
  
  .about-hero-content {
    padding: 2.5rem 1.5rem;
  }
  
  .about-page-title {
    font-size: 1rem;
    top: 1.5rem;
    left: 1.5rem;
  }
}

@media (max-width: 576px) {
  .about-hero-title {
    font-size: 2.2rem;
  }
  
  .about-hero-subtitle {
    font-size: 1.5rem;
  }
  
  .about-hero-description {
    font-size: 1rem;
  }
  
  .about-hero-content {
    padding: 2rem 1rem;
  }
  
  .about-page-title {
    font-size: 0.9rem;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.8rem;
  }
  
  .about-hero-divider {
    width: 100px;
    margin: 1rem 0 1.5rem;
  }
}

@media (max-width: 400px) {
  .about-hero-title {
    font-size: 1.8rem;
  }
  
  .about-hero-subtitle {
    font-size: 1.3rem;
  }
}
/* Стилі для блоку "Примеры меню" */
.menus-section {
  padding: var(--section-spacing) 0;
  background-color: var(--bg-color);
}

.menus-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.daily-menu-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.daily-menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(177, 25, 25, 0.3);
}

.daily-menu-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.daily-menu-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.daily-menu-title {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  color: var(--accent-color-1);
  font-weight: 600;
  position: relative;
  padding-bottom: 0.8rem;
}

.daily-menu-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color-1);
}

.daily-menu-list {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.daily-menu-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  line-height: 1.5;
}

.daily-menu-list li:last-child {
  margin-bottom: 0;
}

.daily-menu-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color-1);
}

.daily-menu-macros {
  font-size: 0.95rem;
  background-color: rgba(177, 25, 25, 0.2);
  padding: 0.8rem;
  border-radius: 6px;
  margin-top: auto;
  font-weight: 500;
  line-height: 1.4;
}

.daily-menu-calories {
  display: inline-block;
  font-weight: 600;
  color: var(--accent-color-1);
}

/* Стилі для блоку "Сезонные рекомендации" */
.seasonal-section {
  padding: var(--section-spacing) 0;
  background-color: var(--dark);
  position: relative;
  overflow: hidden;
}

.seasonal-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at right bottom, rgba(177, 25, 25, 0.2), transparent 70%);
  z-index: 0;
}

.seasonal-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.seasonal-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.seasonal-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.season-block {
  flex: 1;
  min-width: 300px;
  background-color: rgba(32, 32, 32, 0.8);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.season-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.season-title {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  color: var(--accent-color-1);
  font-weight: 600;
  display: flex;
  align-items: center;
}

.season-title i {
  margin-right: 0.8rem;
  font-size: 1.5rem;
}

.season-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.season-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  line-height: 1.5;
}

.season-list li:last-child {
  margin-bottom: 0;
}

.season-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color-1);
}

.seasonal-footer {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 2.5rem;
  background-color: rgba(177, 25, 25, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid var(--accent-color-1);
}

/* Медіазапити для нових блоків */
@media (max-width: 992px) {
  .seasonal-blocks {
    flex-direction: column;
  }
  
  .season-block {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .menus-intro,
  .seasonal-intro {
    font-size: 1rem;
  }
  
  .daily-menu-title,
  .season-title {
    font-size: 1.2rem;
  }
  
  .seasonal-footer {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .daily-menu-title,
  .season-title {
    font-size: 1.1rem;
  }
  
  .daily-menu-list li,
  .season-list li {
    font-size: 0.95rem;
  }
  
  .daily-menu-macros {
    font-size: 0.9rem;
  }
  
  .season-block {
    padding: 1.5rem;
  }
}
/* Стилі для блоку "Контактная информация" */
.contacts-section {
  padding: var(--section-spacing) 0;
  background-color: var(--bg-color);
}

.contacts-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contacts-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 250px;
}

.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(177, 25, 25, 0.3);
}

.contact-icon i {
  font-size: 2.2rem;
  color: var(--white);
}

.contact-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-color-1);
  margin-bottom: 0.7rem;
}

.contact-value {
  font-size: 1.05rem;
  line-height: 1.5;
}

.contact-value a {
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-value a:hover {
  color: var(--accent-color-1);
}

/* Стилі для блоку "Форма обратной связи" */
.feedback-section {
  padding: var(--section-spacing) 0;
  background-color: var(--dark);
  position: relative;
  overflow: hidden;
}

.feedback-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at left top, rgba(177, 25, 25, 0.2), transparent 70%);
  z-index: 0;
}

.feedback-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.feedback-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 3rem;
}

.feedback-form {
  background-color: rgba(32, 32, 32, 0.8);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  flex: 1;
  margin-bottom: 1.5rem;
  position: relative;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.7rem;
  color: var(--accent-color-1);
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(224, 224, 224, 0.1);
  border-radius: 8px;
  color: var(--text-color);
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--accent-color-1);
  outline: none;
  box-shadow: 0 0 0 3px rgba(177, 25, 25, 0.2);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.error-message {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  background-color: var(--primary-color);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
  width: 100%;
}

.form-submit:hover {
  background-color: var(--accent-color-2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(177, 25, 25, 0.3);
}

.form-submit i,
.form-submit span {
  margin-right: 0.8rem;
}

/* Медіазапити для нових блоків */
@media (max-width: 992px) {
  .contact-details {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .contacts-text,
  .feedback-subtitle {
    font-size: 1rem;
  }
  
  .feedback-form {
    padding: 2rem 1.5rem;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
  }
  
  .contact-icon i {
    font-size: 1.8rem;
  }
  
  .contact-title {
    font-size: 1.1rem;
  }
  
  .contact-value {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .contact-details {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-item {
    width: 100%;
  }
  
  .form-submit {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
}
/* Стилі для блоку "Образовательные статьи" */
.articles-section {
  padding: var(--section-spacing) 0;
  background-color: var(--bg-color);
}

.articles-container {
  max-width: 1100px;
  margin: 0 auto;
}

.article-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4rem;
  background-color: rgba(32, 32, 32, 0.7);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.article-card:last-child {
  margin-bottom: 0;
}

.article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(177, 25, 25, 0.3);
}

.article-content {
  flex: 1;
  padding: 2.5rem;
}

.article-image {
  flex: 0 0 350px;
  height: 600px;
  overflow: hidden;
  position: relative;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-title {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  color: var(--accent-color-1);
  font-weight: 600;
  position: relative;
  padding-bottom: 1rem;
}

.article-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color-1);
  border-radius: 2px;
}

.article-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.article-text:last-child {
  margin-bottom: 0;
}

.article-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color-1);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 1.5rem;
  transition: var(--transition);
}

.article-link:hover {
  color: var(--accent-color-2);
  transform: translateX(5px);
}

.article-link i {
  margin-left: 0.5rem;
  font-size: 1.2rem;
}

/* Медіазапити для адаптивності */
@media (max-width: 992px) {
  .article-card {
    flex-direction: column-reverse;
  }
  
  .article-image {
    flex: 0 0 250px;
    width: 100%;
    height: 250px;
  }
  
  .article-content {
    padding: 2rem;
  }
  
  .article-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .article-content {
    padding: 1.5rem;
  }
  
  .article-title {
    font-size: 1.3rem;
  }
  
  .article-text {
    font-size: 1rem;
  }
  
  .article-image {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .article-title {
    font-size: 1.2rem;
  }
  
  .article-text {
    font-size: 0.95rem;
  }
  
  .article-image {
    height: 200px;
  }
  
  .article-card {
    margin-bottom: 3rem;
  }
}