:root {
  --white: #ffffff;
  --dark: #333333;
  --light-border: #fff7ed;
  --border-color: #ffc999;
  --bg-color: #fffbfb;
  --text-color: #515151;
  --accent-color: #ae8820;
  --light-bg: rgba(174, 143, 32, 0.2);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background: #fffbfb;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #515151;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", 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: #bda233;
  border-color: #bda233;
  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: #ffffff;
  padding: 30px 0;
  position: relative;
  border-bottom: 3px solid #bda233;
}
.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;
}

.contact-section {
  padding: 50px 0;
  background-color: #f9f9f9;
}
.contact-section__row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 -15px;
}
.contact-section__col {
  width: 33.33%;
  padding: 0 15px;
}

.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: #bda233;
  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: #bda233;
  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: #3535d1;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(66, 66, 234, 0.4);
  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;
  }
}


/* new styles */
/* Стили для футера */
.footer-section {
  background-color: #1a1a1a;
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 30px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

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

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-title {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

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

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

.footer-contact-item .material-icons {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 20px;
  margin-top: 3px;
}

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

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  padding-left: 15px;
}

.footer-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
  opacity: 0.7;
  transition: var(--transition);
}

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

.footer-nav a:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Адаптивные стили для футера */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-title {
    margin-bottom: 20px;
  }
  
  .footer-col {
    margin-bottom: 20px;
  }
}
/* new styles  */


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

.section {
  padding: 60px 0;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--accent-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #93731b;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Стилі для блоку Hero */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--bg-color) 30%, rgba(255, 251, 251, 0.8) 40%, rgba(255, 251, 251, 0.6) 80%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

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

.hero-subtitle {
  font-size: 22px;
  margin-bottom: 32px;
  color: var(--text-color);
}

/* Стилі для блоку опису */
.about {
  background-color: #fff;
  border-radius: 30px;
  padding: 40px;
  margin-top: -80px;
  position: relative;
  z-index: 3;
}

.about p {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Респонсивні стилі */
@media (max-width: 991px) {
  .hero {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .about {
    margin-top: -60px;
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .hero::before {
    background: linear-gradient(180deg, rgba(255, 251, 251, 0.9) 0%, rgba(255, 251, 251, 0.8) 100%);
  }
  
  .hero-bg {
    width: 100%;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .about {
    margin-top: -40px;
    border-radius: 20px;
    padding: 25px;
  }
  
  .about p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }
  
  .hero {
    min-height: 450px;
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}
/* Стилі для блоків з лайфхаками */
.lifehack-section {
  padding: 70px 0;
  position: relative;
}

.lifehack-section:nth-child(odd) {
  background-color: var(--light-bg);
  border-radius: 0 50px 0 50px;
}

.lifehack-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.lifehack-header {
  text-align: center;
  margin-bottom: 20px;
}

.lifehack-title {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 12px;
}

.lifehack-subtitle {
  font-size: 20px;
  color: var(--accent-color);
  font-weight: 500;
}

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

.lifehack-content.reverse {
  flex-direction: row-reverse;
}

.lifehack-image {
  flex: 0 0 40%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.lifehack-image img:hover {
  transform: scale(1.03);
}

.lifehack-list {
  flex: 0 0 55%;
}

.lifehack-item {
  margin-bottom: 25px;
  position: relative;
  padding-left: 15px;
  border-left: 3px solid var(--border-color);
  padding-bottom: 5px;
}

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

.lifehack-item h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 8px;
}

.lifehack-item p {
  font-size: 16px;
  line-height: 1.7;
}

.lifehack-separator {
  width: 70px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
  margin: 15px 0;
}

/* Декоративні елементи */
.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background-color: var(--light-border);
  z-index: -1;
}

.decoration-circle-1 {
  width: 150px;
  height: 150px;
  top: 50px;
  left: -75px;
}

.decoration-circle-2 {
  width: 100px;
  height: 100px;
  bottom: 100px;
  right: -50px;
  background-color: var(--border-color);
  opacity: 0.3;
}

/* Респонсивні стилі для блоків */
@media (max-width: 991px) {
  .lifehack-title {
    font-size: 32px;
  }
  
  .lifehack-subtitle {
    font-size: 18px;
  }
  
  .lifehack-content {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .lifehack-section {
    padding: 50px 0;
  }
  
  .lifehack-content,
  .lifehack-content.reverse {
    flex-direction: column;
  }
  
  .lifehack-image,
  .lifehack-list {
    flex: 0 0 100%;
  }
  
  .lifehack-image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .lifehack-title {
    font-size: 28px;
  }
  
  .lifehack-subtitle {
    font-size: 16px;
  }
  
  .lifehack-item h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .lifehack-section {
    padding: 40px 0;
  }
  
  .lifehack-section:nth-child(odd) {
    border-radius: 0 30px 0 30px;
  }
  
  .lifehack-container {
    gap: 30px;
  }
  
  .lifehack-title {
    font-size: 24px;
  }
  
  .lifehack-subtitle {
    font-size: 15px;
  }
  
  .lifehack-item {
    margin-bottom: 20px;
  }
  
  .lifehack-item h3 {
    font-size: 17px;
  }
  
  .lifehack-item p {
    font-size: 14px;
  }
  
  .decoration-circle-1 {
    width: 100px;
    height: 100px;
    top: 30px;
    left: -50px;
  }
  
  .decoration-circle-2 {
    width: 70px;
    height: 70px;
    bottom: 50px;
    right: -35px;
  }
}
/* Стилі для блоку "Частые ошибки" */
.mistakes-section {
  padding: 70px 0;
  background-color: var(--bg-color);
  position: relative;
}

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

.mistakes-header {
  text-align: center;
  margin-bottom: 50px;
}

.mistakes-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.mistake-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mistake-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.mistake-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--accent-color);
  border-radius: 2.5px;
}

.mistake-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark);
  padding-left: 15px;
}

.mistake-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-color);
  padding-left: 15px;
}

.mistake-card strong {
  color: var(--accent-color);
  font-weight: 600;
}

.more-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Стилі для блоку "Полезные подборки" */
.collections-section {
  padding: 70px 0;
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
  border-radius: 50px 0 50px 0;
}

.collections-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  object-fit: cover;
  z-index: 0;
}

.collections-container {
  position: relative;
  z-index: 1;
}

.collections-header {
  text-align: center;
  margin-bottom: 50px;
}

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

.collection-item {
  background-color: var(--white);
  border-radius: 20px;
  padding: 25px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.collection-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.collection-item span {
  display: inline-block;
  padding: 5px 12px;
  background-color: var(--accent-color);
  color: var(--white);
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 15px;
  align-self: flex-start;
}

.collection-item h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 10px;
}

.collection-item p {
  font-size: 16px;
  line-height: 1.6;
  flex-grow: 1;
}

/* Додаткові декоративні елементи */
.decoration-circle-3 {
  width: 200px;
  height: 200px;
  top: -100px;
  right: 10%;
  opacity: 0.3;
}

.decoration-circle-4 {
  width: 120px;
  height: 120px;
  bottom: -60px;
  left: 5%;
  background-color: var(--border-color);
  opacity: 0.4;
}

/* Респонсивні стилі для нових блоків */
@media (max-width: 991px) {
  .collections-grid {
    gap: 20px;
  }
  
  .collection-item {
    padding: 20px;
  }
  
  .collection-item h3 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .mistakes-section,
  .collections-section {
    padding: 50px 0;
  }
  
  .collections-section {
    border-radius: 30px 0 30px 0;
  }
  
  .collections-grid {
    grid-template-columns: 1fr;
  }
  
  .mistake-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .mistakes-section,
  .collections-section {
    padding: 40px 0;
  }
  
  .mistakes-header,
  .collections-header {
    margin-bottom: 30px;
  }
  
  .mistake-card {
    padding: 20px;
  }
  
  .mistake-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .mistake-card p,
  .collection-item p {
    font-size: 14px;
  }
  
  .more-btn-container {
    margin-top: 30px;
  }
  
  .collection-item span {
    font-size: 12px;
    padding: 4px 10px;
  }
  
  .collection-item h3 {
    font-size: 16px;
  }
}
/* Стилі для блоку "Наша миссия" */
.mission-section {
  padding: 70px 0;
  background-color: var(--bg-color);
  position: relative;
}

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

.mission-content {
  background-color: var(--white);
  padding: 50px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.mission-content::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: var(--light-bg);
  border-radius: 50%;
  top: -15px;
  left: -15px;
  z-index: -1;
}

.mission-content::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: var(--border-color);
  opacity: 0.3;
  border-radius: 50%;
  bottom: -10px;
  right: -10px;
  z-index: -1;
}

.mission-text {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 20px;
}

.mission-text p {
  margin-bottom: 20px;
}

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

/* Стилі для блоку "Команда" */
.team-section {
  padding: 70px 0;
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.team-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.team-image {
  flex: 0 0 40%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

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

.team-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(174, 143, 32, 0.2) 0%, rgba(255, 255, 255, 0) 50%);
  z-index: 1;
  top: 0;
  left: 0;
}

.team-content {
  flex: 0 0 55%;
}

.team-text {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.7;
}

.team-text p {
  margin-bottom: 20px;
}

/* Стилі для блоку "Пошаговые инструкции" */
.guide-section {
  padding: 70px 0;
  background-color: var(--bg-color);
  position: relative;
}

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

.guide-content {
  background-color: var(--white);
  border-radius: 30px;
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
}

.guide-header {
  text-align: center;
  margin-bottom: 40px;
}

.guide-title {
  font-size: 30px;
  color: var(--dark);
  margin-bottom: 20px;
}

.guide-steps {
  counter-reset: step-counter;
}

.guide-step {
  position: relative;
  padding: 20px 20px 20px 80px;
  margin-bottom: 25px;
  background-color: var(--light-bg);
  border-radius: 15px;
  transition: var(--transition);
}

.guide-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.guide-step:last-child {
  margin-bottom: 0;
}

.guide-step::before {
  counter-increment: step-counter;
  content: "Шаг " counter(step-counter);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 45px;
  height: 45px;
  background-color: var(--accent-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.guide-step h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 10px;
}

.guide-step p {
  font-size: 16px;
  line-height: 1.6;
}

/* Декоративні елементи для нових блоків */
.decoration-circle-5 {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 5%;
  opacity: 0.2;
}

.decoration-circle-6 {
  width: 180px;
  height: 180px;
  bottom: -90px;
  left: 10%;
  opacity: 0.15;
}

/* Респонсивні стилі для нових блоків */
@media (max-width: 991px) {
  .mission-content {
    padding: 40px;
  }
  
  .mission-text {
    font-size: 17px;
  }
  
  .team-container {
    gap: 30px;
  }
  
  .team-text {
    font-size: 16px;
  }
  
  .guide-title {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .mission-section,
  .team-section,
  .guide-section {
    padding: 50px 0;
  }
  
  .mission-content {
    padding: 30px;
  }
  
  .mission-text {
    font-size: 16px;
  }
  
  .team-container {
    flex-direction: column;
  }
  
  .team-image,
  .team-content {
    flex: 0 0 100%;
  }
  
  .team-image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .guide-content {
    padding: 30px;
  }
  
  .guide-step {
    padding: 15px 15px 15px 70px;
  }
  
  .guide-step::before {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
  
  .guide-step h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .mission-section,
  .team-section,
  .guide-section {
    padding: 40px 0;
  }
  
  .mission-content {
    padding: 25px;
  }
  
  .mission-text {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .mission-content::before,
  .mission-content::after {
    display: none;
  }
  
  .team-text {
    font-size: 15px;
  }
  
  .guide-title {
    font-size: 22px;
  }
  
  .guide-content {
    padding: 20px;
  }
  
  .guide-step {
    padding: 15px 15px 15px 60px;
    margin-bottom: 15px;
  }
  
  .guide-step::before {
    width: 35px;
    height: 35px;
    font-size: 12px;
    left: 15px;
    top: 15px;
  }
  
  .guide-step h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .guide-step p {
    font-size: 14px;
  }
}
/* Стилі для блоку "Тематические подборки" */
.articles-section {
  padding: 80px 0;
  background-color: var(--bg-color);
  position: relative;
}

.articles-header {
  text-align: center;
  margin-bottom: 60px;
}

.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
}

.article-card {
  background-color: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.article-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.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: 40px;
}

.article-title {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

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

.article-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-color);
}

.article-text p {
  margin-bottom: 20px;
}

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

.article-tag {
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  z-index: 1;
}

/* Декоративні елементи для блоку статей */
.decoration-circle-7 {
  width: 180px;
  height: 180px;
  top: -90px;
  left: 15%;
  opacity: 0.2;
}

.decoration-circle-8 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  right: -75px;
  background-color: var(--border-color);
  opacity: 0.3;
}

/* Респонсивні стилі для блоку статей */
@media (max-width: 991px) {
  .article-image {
    height: 350px;
  }
  
  .article-content {
    padding: 30px;
  }
  
  .article-title {
    font-size: 24px;
  }
  
  .article-text {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .articles-section {
    padding: 60px 0;
  }
  
  .articles-header {
    margin-bottom: 40px;
  }
  
  .articles-grid {
    gap: 50px;
  }
  
  .article-image {
    height: 300px;
  }
  
  .article-content {
    padding: 25px;
  }
  
  .article-title {
    font-size: 22px;
    margin-bottom: 15px;
    padding-bottom: 12px;
  }
  
  .article-text {
    font-size: 15px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .articles-section {
    padding: 40px 0;
  }
  
  .articles-grid {
    gap: 40px;
  }
  
  .article-image {
    height: 250px;
  }
  
  .article-content {
    padding: 20px;
  }
  
  .article-title {
    font-size: 20px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  
  .article-text {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .article-tag {
    font-size: 12px;
    padding: 6px 12px;
    top: 15px;
    right: 15px;
  }
}
/* Стилі для блоку "Гайды" */
.guides-section {
  padding: 80px 0;
  background-color: var(--light-bg);
  position: relative;
  border-radius: 0 60px 0 60px;
}

.guides-header {
  text-align: center;
  margin-bottom: 50px;
}

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

.guide-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 35px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.guide-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: var(--light-bg);
  border-radius: 0 0 0 100px;
  z-index: 0;
  opacity: 0.5;
}

.guide-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.guide-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.guide-icon i {
  color: var(--white);
  font-size: 24px;
}

.guide-card-title {
  font-size: 22px;
  color: var(--dark);
  margin: 0;
}

.guide-steps {
  position: relative;
  z-index: 1;
}

.guide-step-item {
  margin-bottom: 20px;
  padding-left: 60px;
  position: relative;
}

.guide-step-item:last-child {
  margin-bottom: 0;
}

.guide-step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  background-color: var(--light-bg);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

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

.guide-step-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color);
}

/* Декоративні елементи для блоку гайдів */
.decoration-circle-9 {
  width: 150px;
  height: 150px;
  top: -75px;
  right: 10%;
  opacity: 0.2;
}

.decoration-circle-10 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: 5%;
  background-color: var(--border-color);
  opacity: 0.15;
}

/* Респонсивні стилі для блоку гайдів */
@media (max-width: 991px) {
  .guides-container {
    gap: 30px;
  }
  
  .guide-card {
    padding: 30px;
  }
  
  .guide-card-title {
    font-size: 20px;
  }
  
  .guide-step-title {
    font-size: 17px;
  }
  
  .guide-step-text {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .guides-section {
    padding: 60px 0;
    border-radius: 0 40px 0 40px;
  }
  
  .guides-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .guide-card-header {
    margin-bottom: 20px;
  }
  
  .guide-icon {
    width: 45px;
    height: 45px;
  }
  
  .guide-icon i {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .guides-section {
    padding: 40px 0;
    border-radius: 0 30px 0 30px;
  }
  
  .guides-header {
    margin-bottom: 30px;
  }
  
  .guide-card {
    padding: 25px;
  }
  
  .guide-card::before {
    width: 80px;
    height: 80px;
  }
  
  .guide-card-title {
    font-size: 18px;
  }
  
  .guide-step-item {
    padding-left: 50px;
    margin-bottom: 15px;
  }
  
  .guide-step-number {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
  
  .guide-step-title {
    font-size: 15px;
    margin-bottom: 5px;
  }
  
  .guide-step-text {
    font-size: 13px;
    line-height: 1.5;
  }
}

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

.categories-header {
  text-align: center;
  margin-bottom: 60px;
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.category-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 400px;
  display: flex;
  align-items: flex-end;
}

.category-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(51, 51, 51, 0.9) 0%, rgba(51, 51, 51, 0.4) 50%, rgba(51, 51, 51, 0.2) 100%);
  z-index: 1;
}

.category-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  width: 100%;
}

.category-title {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 25px;
  position: relative;
  padding-left: 18px;
}

.category-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.category-tips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.category-tip {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 20px;
  transition: var(--transition);
}

.category-tip:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  background-color: var(--white);
}

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

.tip-title span {
  display: inline-block;
  width: 28px;
  height: 28px;
  background-color: var(--accent-color);
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  margin-right: 12px;
  font-size: 14px;
  flex-shrink: 0;
}

.tip-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color);
}

/* Декоративні елементи для блоку категорій */
.category-decoration {
  position: absolute;
  z-index: 1;
}

.category-decoration-1 {
  top: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  background-color: var(--accent-color);
  opacity: 0.2;
  border-radius: 50%;
}

.category-decoration-2 {
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border: 5px solid var(--border-color);
  opacity: 0.3;
  border-radius: 50%;
}

/* Респонсивні стилі для блоку категорій */
@media (max-width: 991px) {
  .category-tips {
    gap: 20px;
  }
  
  .category-tip {
    padding: 15px;
  }
  
  .tip-title {
    font-size: 17px;
  }
  
  .tip-text {
    font-size: 14px;
  }
  
  .category-title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .categories-section {
    padding: 60px 0;
  }
  
  .categories-header {
    margin-bottom: 40px;
  }
  
  .categories-grid {
    gap: 40px;
  }
  
  .category-tips {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .category-content {
    padding: 30px;
  }
  
  .category-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .category-decoration-1 {
    width: 60px;
    height: 60px;
  }
  
  .category-decoration-2 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .categories-section {
    padding: 40px 0;
  }
  
  .categories-grid {
    gap: 30px;
  }
  
  .category-card {
    min-height: 350px;
  }
  
  .category-content {
    padding: 25px;
  }
  
  .category-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .tip-title {
    font-size: 16px;
  }
  
  .tip-title span {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    margin-right: 10px;
  }
  
  .tip-text {
    font-size: 13px;
  }
  
  .category-decoration-1,
  .category-decoration-2 {
    display: none;
  }
}
/* Стилі для блоку "Контакты и форма обратной связи" */
.contacts-section {
  padding: 80px 0;
  background-color: var(--light-bg);
  position: relative;
}

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

/* Стилі для блоку контактної інформації */
.contact-info {
  padding: 40px;
  background-color: var(--white);
  border-radius: 25px;
  box-shadow: var(--shadow);
  height: 100%;
}

.contact-header {
  margin-bottom: 30px;
}

.contact-title {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 15px;
}

.contact-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 30px;
}

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

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

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-icon i {
  color: var(--accent-color);
  font-size: 20px;
}

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

.contact-text strong {
  display: block;
  color: var(--dark);
  margin-bottom: 3px;
}

.contact-map {
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

/* Стилі для форми зворотного зв'язку */
.feedback-form {
  padding: 40px;
  background-color: var(--white);
  border-radius: 25px;
  box-shadow: var(--shadow);
  height: 100%;
}

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

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

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

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

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

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

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

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

.form-submit {
  display: block;
  width: 100%;
  padding: 14px;
  background-color: var(--accent-color);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  background-color: #93731b;
}

.form-submit:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

/* Декоративні елементи для блоку контактів */
.contacts-decoration {
  position: absolute;
  z-index: 0;
}

.contacts-decoration-1 {
  top: -70px;
  right: 10%;
  width: 140px;
  height: 140px;
  border: 8px solid var(--border-color);
  opacity: 0.2;
  border-radius: 50%;
}

.contacts-decoration-2 {
  bottom: -60px;
  left: 5%;
  width: 120px;
  height: 120px;
  background-color: var(--accent-color);
  opacity: 0.1;
  border-radius: 50%;
}

/* Респонсивні стилі для блоку контактів */
@media (max-width: 991px) {
  .contacts-grid {
    gap: 30px;
  }
  
  .contact-info,
  .feedback-form {
    padding: 30px;
  }
  
  .contact-title,
  .form-title {
    font-size: 24px;
  }
  
  .contact-description,
  .form-subtitle {
    font-size: 15px;
  }
  
  .contact-map {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .contacts-section {
    padding: 60px 0;
  }
  
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info,
  .feedback-form {
    padding: 25px;
  }
  
  .contact-map {
    height: 200px;
  }
  
  .form-input {
    padding: 10px 12px;
  }
  
  .form-submit {
    padding: 12px;
  }
  
  .contacts-decoration-1,
  .contacts-decoration-2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .contacts-section {
    padding: 40px 0;
  }
  
  .contacts-grid {
    gap: 30px;
  }
  
  .contact-info,
  .feedback-form {
    padding: 20px;
  }
  
  .contact-title,
  .form-title {
    font-size: 22px;
  }
  
  .contact-description,
  .form-subtitle {
    font-size: 14px;
  }
  
  .contact-item {
    margin-bottom: 15px;
  }
  
  .contact-icon {
    width: 35px;
    height: 35px;
  }
  
  .contact-icon i {
    font-size: 18px;
  }
  
  .contact-text {
    font-size: 14px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-label {
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .form-input {
    font-size: 14px;
  }
  
  .form-submit {
    font-size: 14px;
  }
}