
:root {
  --primary: #198820;
  --secondary: #1fbb29;
  --white: #ffffff;
  --dark: #262626;
  --text: #666666;
  --light-gray: #f5fff4;
  --light-bg: #f8f8f8;
  --border-color: #f1ffc6;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background: #f5f5f5;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #666666;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Ubuntu", 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: #1fbb29;
  border-color: #1fbb29;
  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: #b7ffba;
  padding: 30px 0;
  position: relative;
  border-bottom: #a622c7;
}
.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;
  text-transform: uppercase;
}
.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: #000000;
}
.nav > li > a:hover {
  color: #0088c7;
}

.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: #000000;
    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;
  }

  .btn-primary {
    padding: 12px 25px;
    font-size: 100%;
  }
  
  .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: #1fbb29;
  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: #1fbb29;
  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: #d13574;
  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 {
  padding: 60px 0 30px;
  background-color: #333;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
}

.footer-logo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 2px;
}

.footer-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

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

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  position: relative;
}

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

.footer-nav a:hover {
  color: var(--white);
}

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

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

.footer-contact-item .material-icons {
  color: var(--primary);
  margin-right: 10px;
  font-size: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

/* Адаптивність для футера */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-col:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 40px 0 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-col:first-child {
    grid-column: span 1;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .footer-logo::after,
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-contact-item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    font-size: 22px;
  }
  
  .footer-title {
    font-size: 16px;
  }
  
  .footer-contact-item .material-icons {
    font-size: 18px;
  }
}
/* new styles  */

/* Утилітарні класи для багаторазового використання */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.text-primary {
  color: var(--primary);
}

.text-white {
  color: var(--white);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

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

.heading-lg {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.heading-md {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
}

.subheading {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 24px;
  max-width: 700px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  box-shadow: var(--shadow);
  margin-left: 5%;
}

.hero-title {
  color: var(--dark);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-subtitle {
  color: var(--text);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.5;
}

.hero-btn {
  padding: 14px 28px;
  font-size: 18px;
}

/* Стилі для блоку "Почему важно питаться осознанно" */
.benefits {
  background-color: var(--light-bg);
  padding: 80px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  font-size: 64px !important;
  color: var(--primary);
  margin-bottom: 20px;
}

.benefit-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
}

.benefit-text {
  font-size: 16px;
  color: var(--text);
}

/* Стилі для блоку "Принципы составления веганского рациона" */
.principles {
  padding: 80px 0;
}

.principles-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.principles-text {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 25px;
  line-height: 1.7;
}

.principles-image-container {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.principles-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.principles-list {
  list-style: none;
}

.principles-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 17px;
}

.principles-list-item::before {
  content: "eco";
  font-family: 'Material Icons';
  color: var(--primary);
  margin-right: 10px;
}

/* Стилі для блоку "Типовые меню на день / неделю" */
.menu {
  background-color: var(--light-gray);
  padding: 80px 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.menu-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
}

.menu-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.menu-content {
  padding: 25px;
}

.menu-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.menu-title .material-icons {
  color: var(--primary);
  margin-right: 10px;
}

.menu-description {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.5;
}

.menu-list {
  list-style: none;
}

.menu-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding-left: 10px;
  position: relative;
}

.menu-list-item::before {
  content: "fiber_manual_record";
  font-family: 'Material Icons';
  font-size: 12px;
  color: var(--primary);
  margin-right: 10px;
}

/* Медіа-запити для адаптивності */
@media (max-width: 992px) {
  .hero-title {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }
  
  .hero-content {
    max-width: 90%;
    margin: 0 auto;
    padding: 30px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .section-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 60vh;
  }
  
  .hero-content {
    padding: 20px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-btn {
    padding: 12px 24px;
    font-size: 16px;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  
  .benefit-icon {
    font-size: 50px;
  }
  
  .benefit-title {
    font-size: 20px;
  }
  
  .menu-image {
    height: 200px;
  }
}
/* Стилі для блоку "Доставка рационов в Казахстане" */
.delivery-info {
  padding: 80px 0;
  background-color: var(--white);
}

.delivery-info-container {
  max-width: 800px;
  margin: 0 auto;
}

.delivery-info-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 25px;
  text-align: justify;
}

.more-btn-container {
  text-align: center;
  margin-top: 40px;
}

.more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.more-btn .material-icons {
  font-size: 18px;
  transition: var(--transition);
}

.more-btn:hover .material-icons {
  transform: translateX(5px);
}

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

.health-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.health-text {
  flex: 1;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  text-align: justify;
}

.health-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.health-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

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

/* Стилі для блоку "В цифрах" */
.stats {
  padding: 60px 0;
  background-color: var(--primary);
  color: var(--white);
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
  padding: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.stat-number::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
}

.stat-text {
  font-size: 16px;
  line-height: 1.5;
  max-width: 300px;
  margin: 0 auto;
}

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

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  min-width: 80px;
  padding: 20px 0;
}

.step-content {
  padding: 20px 25px;
  flex: 1;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.step-description {
  font-size: 16px;
  color: var(--text);
  line-height: 1.5;
}

/* Медіа-запити для адаптивності нових блоків */
@media (max-width: 992px) {
  .health-content {
    flex-direction: column-reverse;
  }
  
  .health-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .stat-number {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-item {
    width: 100%;
    max-width: 300px;
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .step-number {
    width: 100%;
    padding: 10px 0;
  }
}

@media (max-width: 576px) {
  .delivery-info-text, 
  .health-text {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .stat-text {
    font-size: 15px;
  }
  
  .step-title {
    font-size: 18px;
  }
}
/* Стилі для блоку "Кто мы" */
.about-us {
  padding: 80px 0;
  background-color: var(--white);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 136, 32, 0.1);
  z-index: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

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

/* Стилі для блоку "Наша философия" */
.philosophy {
  padding: 80px 0;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.philosophy-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 25px;
}

.philosophy-quote {
  font-style: italic;
  font-size: 20px;
  color: var(--primary);
  margin: 30px auto;
  padding: 20px;
  border-left: 4px solid var(--primary);
  background-color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  text-align: left;
}

/* Стилі для блоку "Рационы на каждый день" */
.daily-meals {
  padding: 80px 0;
  background-color: var(--white);
}

.meals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.meal-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.meal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.meal-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.meal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.meal-calories {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  z-index: 2;
}

.meal-content {
  padding: 25px;
}

.meal-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.meal-title .material-icons {
  color: var(--primary);
  margin-right: 10px;
  font-size: 18px;
}

.meal-list {
  list-style: none;
  margin-bottom: 0;
}

.meal-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}

.meal-list-item:last-child {
  margin-bottom: 0;
}

.meal-list-item::before {
  content: "restaurant";
  font-family: 'Material Icons';
  color: var(--primary);
  margin-right: 10px;
  font-size: 16px;
}

/* Стилі для блоку "Меню по целям" */
.goal-menus {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.goals-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.goal-item {
  background-color: var(--white);
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.goal-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.goal-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--light-gray);
  padding-bottom: 10px;
}

.goal-title .material-icons {
  color: var(--primary);
  margin-right: 10px;
}

.goal-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

.calories-info {
  font-weight: 500;
  color: var(--primary);
  margin-top: 10px;
  font-size: 15px;
}

/* Медіа-запити для адаптивності нових блоків */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column-reverse;
  }
  
  .about-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .meals-grid {
    grid-template-columns: 1fr;
  }
  
  .goals-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-description,
  .philosophy-text {
    font-size: 16px;
  }
  
  .philosophy-quote {
    font-size: 18px;
    padding: 15px;
  }
  
  .meal-image {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .about-description,
  .philosophy-text {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .philosophy-quote {
    font-size: 16px;
    padding: 10px;
    margin: 20px auto;
  }
  
  .meal-title,
  .goal-title {
    font-size: 18px;
  }
  
  .meal-content {
    padding: 20px;
  }
  
  .meal-list-item {
    font-size: 14px;
  }
  
  .goal-description {
    font-size: 15px;
  }
}
/* Стилі для блоку "Статті" */
.articles {
  padding: 80px 0;
  background-color: var(--white);
}

.articles-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.article-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.article-image {
  height: 200px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.article-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article-date {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.article-date .material-icons {
  font-size: 16px;
  margin-right: 5px;
  color: var(--primary);
}

.article-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
}

.article-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 20px;
  flex-grow: 1;
}

.article-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  margin-top: auto;
  transition: var(--transition);
}

.article-link .material-icons {
  font-size: 18px;
  margin-left: 5px;
  transition: var(--transition);
}

.article-link:hover {
  color: var(--secondary);
}

.article-link:hover .material-icons {
  transform: translateX(3px);
}

/* Стилі для блоку "Реальные истории читателей" */
.testimonials {
  padding: 80px 0;
  background-color: var(--light-gray);
  position: relative;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 50px;
  left: 5%;
  font-size: 150px;
  color: rgba(25, 136, 32, 0.05);
  font-family: serif;
  line-height: 0;
}

.testimonials::after {
  content: '"';
  position: absolute;
  bottom: 50px;
  right: 5%;
  font-size: 150px;
  color: rgba(25, 136, 32, 0.05);
  font-family: serif;
  line-height: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.testimonial-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--primary);
  border-radius: 3px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
}

.testimonial-location {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 10px;
}

.testimonial-rating {
  color: #FFD700;
  font-size: 18px;
}

/* Стилі для блоку "Контактная информация" */
.contact-info {
  padding: 80px 0;
  background-color: var(--white);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-icon {
  font-size: 24px;
  color: var(--primary);
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}

.contact-title {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Стилі для блоку "Форма обратной связи" */
.contact-form {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.form-subtitle {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(25, 136, 32, 0.1);
}

.error-message {
  color: #e53935;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.form-submit {
  background-color: var(--primary);
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  margin-top: 10px;
}

.form-submit:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Медіа-запити для адаптивності нових блоків */
@media (max-width: 992px) {
  .articles-container,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .map-container {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .article-title {
    font-size: 18px;
  }
  
  .article-description {
    font-size: 15px;
  }
  
  .testimonial-content {
    font-size: 15px;
  }
  
  .form-container {
    padding: 30px;
  }
  
  .form-title {
    font-size: 24px;
  }
  
  .contact-icon {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .article-image {
    height: 180px;
  }
  
  .article-content,
  .testimonial-card {
    padding: 20px;
  }
  
  .form-container {
    padding: 20px;
  }
  
  .form-title {
    font-size: 22px;
  }
  
  .form-subtitle {
    font-size: 15px;
  }
  
  .form-input {
    padding: 10px 12px;
  }
}

/* Стилі для головного екрану сторінки "О нас" */
.about-hero {
  padding: 100px 0;
  background-color: var(--primary);
  position: relative;
  overflow: hidden;
}

.about-hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-title {
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 10px;
  line-height: 1.5;
}

.about-hero-text {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 30px;
}

.about-hero-decoration {
  position: absolute;
  font-family: 'Material Icons';
  color: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.decoration-1 {
  content: 'eco';
  top: 10%;
  left: 5%;
  font-size: 60px;
  transform: rotate(-15deg);
}

.decoration-2 {
  content: 'restaurant';
  bottom: 15%;
  right: 8%;
  font-size: 70px;
  transform: rotate(20deg);
}

.decoration-3 {
  content: 'spa';
  top: 60%;
  left: 10%;
  font-size: 50px;
  transform: rotate(10deg);
}

/* Медіа-запити для адаптивності */
@media (max-width: 992px) {
  .about-hero {
    padding: 80px 0;
  }
  
  .about-hero-title {
    font-size: 48px;
  }
  
  .about-hero-subtitle {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 60px 0;
  }
  
  .about-hero-title {
    font-size: 42px;
  }
  
  .about-hero-subtitle {
    font-size: 20px;
  }
  
  .about-hero-text {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding: 50px 0;
  }
  
  .about-hero-title {
    font-size: 36px;
  }
  
  .about-hero-subtitle {
    font-size: 18px;
  }
  
  .about-hero-text {
    font-size: 15px;
  }
  
  .decoration-1,
  .decoration-2,
  .decoration-3 {
    display: none;
  }
}