@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --primary-dark: #1B3A4B;
  --primary: #2C6E6F;
  --primary-light: #3D8B8E;
  --accent: #C5923A;
  --accent-light: #D4A853;
  --accent-hover: #B07E2E;
  --bg-main: #F5F0E8;
  --bg-alt: #EDE7DB;
  --bg-card: #FFFFFF;
  --text-dark: #2D2A26;
  --text-body: #4A453E;
  --text-muted: #7A746B;
  --border: #D9D2C7;
  --shadow: 0 4px 20px rgba(27, 58, 75, 0.08);
  --shadow-hover: 0 8px 30px rgba(27, 58, 75, 0.15);
  --radius: 12px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-body);
  background-color: var(--bg-main);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 2.8rem; margin-bottom: 1rem; }
h2 { font-size: 2.2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.3rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1.2rem; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.accent-font {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--accent);
}

#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(197, 146, 58, 0.3);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--primary-dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1140px;
  margin: 0 auto;
  height: 70px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--accent);
}

.navbar-brand svg {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-bottom-color: var(--accent);
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1100;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
  border-radius: 2px;
}

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.burger-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--primary-dark);
  z-index: 1050;
  transition: right 0.4s ease;
  padding-top: 90px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.burger-menu.active {
  right: 0;
}

.burger-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 0 30px;
}

.burger-menu-inner a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: var(--transition);
}

.burger-menu-inner a:hover {
  color: var(--accent);
  padding-left: 10px;
}

.burger-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.burger-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 70px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27, 58, 75, 0.85) 0%, rgba(27, 58, 75, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  max-width: 800px;
}

.hero-content h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 1.2rem;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
}

.hero-content .hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.hero-content .btn-hero {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: var(--transition);
}

.hero-content .btn-hero:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 146, 58, 0.4);
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.9);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  position: relative;
  padding-bottom: 20px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 15px;
}

.city-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 40px;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.city-feature:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.city-feature.reverse {
  direction: rtl;
}

.city-feature.reverse > * {
  direction: ltr;
}

.city-feature-img {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.city-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s ease;
}

.city-feature:hover .city-feature-img img {
  transform: scale(1.05);
}

.city-feature-content {
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.city-feature-content .city-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
  width: fit-content;
}

.city-feature-content h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.city-feature-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.city-feature-content .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 15px;
  text-decoration: none;
}

.city-feature-content .read-more:hover {
  gap: 12px;
  color: var(--accent-hover);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 35px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--accent);
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-box .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 1.3rem;
}

.feature-box h4 {
  margin-bottom: 8px;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.tips-block {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.tips-block-number {
  background: var(--primary-dark);
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tips-block-content {
  padding: 25px 30px;
}

.tips-block-content h4 {
  margin-bottom: 8px;
}

.tips-block-content p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 60px 0;
}

.article-content h2 {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.article-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.article-content img {
  border-radius: var(--radius);
  margin: 20px 0;
  box-shadow: var(--shadow);
}

.article-content blockquote {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  padding: 20px 25px;
  margin: 25px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dark);
}

.article-content ul,
.article-content ol {
  margin: 15px 0 20px 25px;
}

.article-content li {
  margin-bottom: 8px;
}

.article-sidebar {
  position: sticky;
  top: 90px;
  align-self: start;
}

.sidebar-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: var(--shadow);
}

.sidebar-box h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.sidebar-box ul {
  list-style: none;
  padding: 0;
}

.sidebar-box ul li {
  margin-bottom: 8px;
}

.sidebar-box ul li a {
  color: var(--text-body);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-box ul li a:hover {
  color: var(--accent);
}

.sidebar-box ul li a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.related-articles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.related-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

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

.related-card-body {
  padding: 20px;
}

.related-card-body h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.related-card-body p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.breadcrumb {
  padding: 15px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--border);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.article-meta i {
  margin-right: 5px;
  color: var(--accent);
}

.contact-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  color: var(--text-body);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.contact-card .card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 1.5rem;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.contact-card .card-email {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: underline;
}

.contact-card .card-email:hover {
  color: var(--accent);
}

.faq-section {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  margin-bottom: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  color: var(--accent);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 25px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  transition: bottom 0.5s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.visible {
  bottom: 0;
}

.cookie-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookie-banner-text {
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}

.cookie-banner-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-btn-accept:hover {
  background: var(--accent-hover);
}

.cookie-btn-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--accent);
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

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

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

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

.about-image::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
}

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

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.value-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 15px;
  display: block;
}

.value-card h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
}

.policy-content h2 {
  margin-top: 40px;
  font-size: 1.6rem;
}

.policy-content h3 {
  margin-top: 25px;
  font-size: 1.2rem;
}

.policy-content ul {
  margin: 10px 0 20px 25px;
}

.policy-content li {
  margin-bottom: 6px;
}

.update-badge {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.ext-link {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 3px;
}

.ext-link:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .city-feature {
    grid-template-columns: 1fr;
  }

  .city-feature.reverse {
    direction: ltr;
  }

  .city-feature-img {
    min-height: 250px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image::after {
    display: none;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .related-articles {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.3rem; }

  .hero {
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: 50px 0;
  }

  .city-feature-content {
    padding: 25px 20px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content .hero-subtitle {
    font-size: 1.05rem;
  }

  .tips-block {
    flex-direction: column;
  }

  .tips-block-number {
    min-width: auto;
    padding: 15px;
    font-size: 1.5rem;
  }

  .burger-menu {
    width: 260px;
  }

  .cookie-banner-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}