﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Mulish:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #f7f4f4;
  --text: #1f2933;
  --muted: #856666;
  --accent: #1db6d0;
  --accent-strong: #129bb3;
  --accent-soft: #e8f7fa;
  --card: #ffffff;
  --shadow: 0 16px 40px rgba(16, 24, 40, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #198fb0;
  margin: 0 0 28px;
}

.topbar {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 5;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  color: #e8f7fa;
}

.nav-links a.active {
  color: #ffd100;
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  align-items: center;
  justify-content: center;
}

.hero {
  position: relative;
  min-height: 420px;
  background: #0f172a;
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 20, 30, 0.78), rgba(7, 20, 30, 0.15));
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 120px;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: 0.5px;
}

.hero-subtitle {
  max-width: 520px;
  color: #dceff4;
  margin: 0 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

.btn-outline {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.popular-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 260px;
  color: #fff;
}

.popular-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 19, 29, 0.2), rgba(4, 19, 29, 0.85));
}

.popular-card .content {
  position: relative;
  z-index: 2;
  padding: 18px;
}

.popular-card h3 {
  font-size: 16px;
  margin: 0 0 8px;
}

.about-block {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-card {
  padding: 28px;
}

.icon-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.icon-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}

.icon-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffd47a;
  display: grid;
  place-items: center;
  color: #6b4c00;
  font-weight: 700;
}

.cta-block {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 32px;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid img {
  border-radius: 12px;
  height: 150px;
  object-fit: cover;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.review-card {
  padding: 22px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: start;
}

.review-card img {
  border-radius: 16px;
}

.footer {
  background: #efefef;
  padding: 32px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.footer-links, .footer-contacts {
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.tour-list {
  display: grid;
  gap: 24px;
}

.tour-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.tour-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.tour-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffe9b3;
  color: #8a5b00;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.calendar-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: #f3f4f6;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  font-size: 12px;
  margin-top: 12px;
}

.calendar-grid span {
  background: #fff;
  border-radius: 6px;
  padding: 6px 0;
  text-align: center;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.price-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(16, 24, 40, 0.08);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px;
  display: grid;
  gap: 10px;
  border-left: 4px solid #ffd47a;
}

.booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.form-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 12px;
}

.input {
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.input input, .input textarea, .input select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d0d5dd;
  font-family: inherit;
}

.test-wrapper {
  background: #f3f3f3;
  border-radius: var(--radius-lg);
  padding: 36px;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 36px;
}

.test-item h4 {
  margin: 0 0 10px;
  color: #198fb0;
}

.test-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4b5563;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: #4b5563;
  padding: 24px 0 0;
}

.pagination span {
  padding: 4px 8px;
  border-radius: 6px;
}

.pagination span.active {
  background: var(--accent-soft);
  color: #198fb0;
}

@media (max-width: 1024px) {
  .popular-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tour-card {
    grid-template-columns: 1fr;
  }

  .detail-grid, .booking, .about-block, .cta-block {
    grid-template-columns: 1fr;
  }

  .price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .burger {
    display: inline-flex;
  }

  body.nav-open .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(12, 26, 38, 0.9);
    border-radius: 12px;
    padding: 14px 18px;
    display: grid;
    gap: 10px;
  }

  .hero-content {
    padding: 110px 0 80px;
  }

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

  .icon-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

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

  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 320px;
  }

  .hero-content {
    padding: 90px 0 64px;
  }

  .section {
    padding: 48px 0;
  }

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

  .review-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


/* Home page redesign */
.home-hero {
  position: relative;
  min-height: min(820px, 100vh);
  color: #fff;
  overflow: hidden;
  background: #111;
}

.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 16, 23, 0.62) 0%, rgba(6, 16, 23, 0.28) 44%, rgba(6, 16, 23, 0.52) 100%);
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-topbar {
  position: absolute;
  inset: 26px 0 auto;
  z-index: 5;
}

.home-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.home-logo img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
}

.home-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
}

.home-links a {
  color: rgba(245, 248, 255, 0.9);
}

.home-links a.active {
  color: #ffd54a;
}

.home-hero-content {
  position: relative;
  z-index: 3;
  padding-top: clamp(165px, 22vh, 230px);
}

.home-hero-title {
  margin: 0 0 32px;
  line-height: 0.94;
  font-weight: 800;
  font-size: clamp(44px, 7.5vw, 98px);
  letter-spacing: 0.02em;
  max-width: 680px;
}

.home-hero-inline {
  display: inline-block;
  color: #ffc400;
  font-size: clamp(20px, 3vw, 42px);
  margin: 0 12px;
  font-weight: 600;
    position: relative;
  top: -20px;
}

.home-hero-outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
}

.home-main-btn {
  padding: 11px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(90deg, #00c2ff, #00adc8);
}

.home-section {
  padding: 74px 0;
}

.home-heading-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 30px;
}

.home-link-muted {
  font-size: 12px;
  color: #9ba3aa;
}

.home-popular-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-popular-card {
  position: relative;
  height: 320px;
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
}

.home-popular-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 24, 0.15) 32%, rgba(8, 18, 24, 0.92) 100%);
}

.home-popular-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-popular-content {
  position: absolute;
  inset: auto 16px 16px;
  z-index: 2;
}

.home-popular-content h3 {
  margin: 0 0 6px;
  color: #ffd54a;
  font-size: 13px;
}

.home-popular-content p {
  margin: 0 0 13px;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-card-btn {
  padding: 8px 20px;
  font-size: 11px;
}

.home-about {
  position: relative;
}

.home-about-image {
  overflow: hidden;
  border-radius: 6px;
}

.home-about-image img {
  width: min(900px, 100%);
  height: 470px;
  object-fit: cover;
  border-radius: 6px;
}

.home-about-card {
  position: absolute;
  right: 0;
  top: 56px;
  width: min(420px, 100%);
  background: #ededed;
  border-radius: 8px;
  padding: 30px;
  color: #4f5b66;
}

.home-about-card .section-title {
  margin: 0 0 14px;
}

.home-about-card p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.55;
}

.home-types-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 38px;
}

.home-type-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  align-items: start;
}

.home-type-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-top: 2px;
}

.home-type-item h4 {
  margin: 0 0 4px;
  color: #0f9fc0;
  font-size: 15px;
}

.home-type-item p {
  margin: 0;
  color: #3e4b58;
  font-size: 12px;
  line-height: 1.4;
}

.home-types-note {
  text-align: center;
  margin: 40px auto 14px;
  max-width: 560px;
  color: #6c7885;
  font-size: 12px;
}

.home-types-action {
  text-align: center;
}

.home-cta {
  position: relative;
  min-height: 450px;
}

.home-cta-image {
  width: min(940px, 100%);
  margin-left: auto;
  height: 450px;
  object-fit: cover;
  border-radius: 6px;
}

.home-cta-card {
  position: absolute;
  left: 0;
  top: 58px;
  width: min(390px, 100%);
  background: #efefef;
  border-radius: 8px;
  padding: 30px;
}

.home-cta-card .section-title {
  margin: 0 0 16px;
}

.home-cta-card p {
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.5;
  color: #4d5964;
}

.home-gallery {
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  grid-template-areas:
    "i1 i1 i1 i1 i1 i1 i2 i2 i2 i2 i3 i3 i3 i4 i4 i4"
    "i1 i1 i1 i1 i1 i1 i2 i2 i2 i2 i3 i3 i3 i4 i4 i4"
    "i5 i5 i5 i6 i6 i6 i2 i2 i2 i2 i8 i8 i8 i8 i8 i8"
    "i5 i5 i5 i7 i7 i7 i2 i2 i2 i2 i8 i8 i8 i8 i8 i8";
  gap: 8px;
}

.home-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  aspect-ratio: 1 / 1;
}

.home-gallery .gallery-i1 { grid-area: i1; aspect-ratio: 16 / 9; }
.home-gallery .gallery-i2 { grid-area: i2; aspect-ratio: 3 / 5; }
.home-gallery .gallery-i3 { grid-area: i3; aspect-ratio: 4 / 3; }
.home-gallery .gallery-i4 { grid-area: i4; aspect-ratio: 4 / 3; }
.home-gallery .gallery-i5 { grid-area: i5; aspect-ratio: 1 / 1.15; }
.home-gallery .gallery-i6 { grid-area: i6; aspect-ratio: 16 / 9; }
.home-gallery .gallery-i7 { grid-area: i7; aspect-ratio: 16 / 9; }
.home-gallery .gallery-i8 { grid-area: i8; aspect-ratio: 16 / 9; }

@media (max-width: 1080px) {
  .home-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: none;
    gap: 10px;
  }

  .home-gallery img {
    aspect-ratio: 4 / 3;
  }

  .home-gallery .gallery-i1,
  .home-gallery .gallery-i2,
  .home-gallery .gallery-i3,
  .home-gallery .gallery-i4,
  .home-gallery .gallery-i5,
  .home-gallery .gallery-i6,
  .home-gallery .gallery-i7,
  .home-gallery .gallery-i8 {
    grid-area: auto;
  }
}

.home-reviews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-review-card {
  background: #ececec;
  border-radius: 8px;
  padding: 16px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
}

.home-review-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 4px;
}

.home-review-card strong {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
}

.home-review-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #4d5964;
}

.home-footer {
  margin-top: 62px;
  background: #e9e9e9;
  padding: 24px 0;
   border-radius: 16px;
}

.home-footer-grid {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  align-items: center;
  gap: 20px;
}

.home-footer-logo img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.home-footer-links,
.home-footer-contacts {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: #424c55;
}

@media (max-width: 1100px) {
  .home-popular-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-popular-card {
    height: 300px;
  }

  .home-about-card,
  .home-cta-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .home-about-image img,
  .home-cta-image {
    width: 100%;
  }

  .home-cta {
    min-height: auto;
  }
}

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

  body.nav-open .home-links {
    position: absolute;
    top: 62px;
    right: 18px;
    display: grid;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(9, 21, 29, 0.88);
    z-index: 10;
  }

  body.nav-open .home-links a {
    color: #ecf2f8;
  }

  .home-hero {
    min-height: 560px;
  }

  .home-hero-title {
    max-width: 450px;
  }

  .home-types-grid,
  .home-reviews,
  .home-footer-grid {
    grid-template-columns: 1fr;
  }

  .home-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: none;
  }

  .home-gallery img {
    height: 170px;
    aspect-ratio: auto;
  }

  .home-review-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .home-section {
    padding: 56px 0;
  }

  .home-popular-grid {
    grid-template-columns: 1fr;
  }

  .home-popular-card {
    height: 270px;
  }

  .home-hero-content {
    padding-top: 130px;
  }

  .home-hero-inline {
    display: block;
    margin: 30px 0 1px;
  }

  .home-footer {
    margin-top: 28px;
  }

  .home-footer .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-footer-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 18px;
  }

  .home-footer-logo {
    justify-self: start;
  }

  .home-footer-links {
    justify-self: center;
    text-align: center;
  }

  .home-footer-contacts {
    justify-self: end;
    text-align: right;
  }

  .home-footer-links,
  .home-footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .home-footer-logo img {
    max-width: 42px;
    height: auto;
    display: block;
  }
}

/* Tours page redesign */
.tours-hero {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  color: #fff;
}

.tours-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 18, 32, 0.56), rgba(6, 18, 32, 0.25));
}

.tours-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tours-topbar {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 4;
}

.tours-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.tours-logo img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  
}

.tours-links {
  font-size: 13px;
}

.tours-links a {
  color: rgba(242, 248, 255, 0.9);
}

.tours-links a.active {
  color: #ffd54a;
}

.tours-hero-content {
  position: relative;
  z-index: 3;
  padding: 118px 0 34px;
}

.tours-hero-title {
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
  letter-spacing: 0.01em;
  font-weight: 800;
}

.tours-section {
  padding-top: 28px;
}

.tours-container .section-title {
  margin-bottom: 30px;
}

.tours-list {
  gap: 18px;
}

.tours-card {
  grid-template-columns: 350px 1fr;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
  border: 1px solid #e7ebef;
}

.tours-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 0;
}

.tours-card-content {
  padding: 24px 28px 22px 26px;
}

.tours-badge {
  margin-bottom: 10px;
  background: transparent;
  color: #efb126;
  padding: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
}

.tours-card h3 {
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 700;
}

.tours-stats {
  gap: 26px;
  margin-bottom: 16px;
}

.tours-stat {
  display: inline-grid;
  gap: 10px;
  font-size: 30px;
  color: #149bd0;
  font-weight: 700;
  line-height: 1;
}

.tours-stat em {
  font-style: normal;
  font-size: 0.7em;
  margin-right: 4px;
  position: relative;
  left: -3px;
}

.tours-stat small {
  display: block;
  color: #8592a0;
  font-size: 15px;
  font-weight: 500;

}

.tours-text {
  margin: 0 0 16px;
  padding-left: 16px;
  border-left: 3px solid #1ca8da;
  font-size: 14px;
  line-height: 1.45;
  color: #2f3a48;
}

.tours-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tours-btn {
  min-width: 170px;
}

.tours-fav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #edf1f4;
  color: #a8b0b8;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .tours-card h3 {
    font-size: 36px;
  }

  .tours-stat {
    font-size: 26px;
  }
}

@media (max-width: 900px) {
  .tours-card {
    grid-template-columns: 1fr;
  }

  .tours-card img {
    min-height: 230px;
  }

  .tours-card h3 {
    font-size: 30px;
  }

  .tours-stat {
    font-size: 24px;
  }
}

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

  body.nav-open .tours-links {
    position: absolute;
    top: 56px;
    right: 16px;
    display: grid;
    gap: 10px;
    background: rgba(10, 24, 36, 0.92);
    border-radius: 12px;
    padding: 12px 14px;
  }

  .tours-hero-title {
    font-size: 42px;
  }

  .tours-card-content {
    padding: 18px 16px 16px;
  }

  .tours-stat {
    font-size: 22px;
  }

  .tours-text {
    font-size: 14px;
  }
  
}

/* Test page redesign */
.test-hero .tours-hero-title {
  font-size: clamp(52px, 7vw, 92px);
}

.testpage-section {
  padding-top: 42px;
  padding-bottom: 56px;
}

.testpage-box {
  background: #ececec;
  border-radius: 12px;
  padding: clamp(22px, 3.2vw, 44px);
}

.testpage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px 68px;
}

.testpage-item {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.testpage-item legend {
  color: #109ad3;
  font-size: clamp(30px, 2.2vw, 44px);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 14px;
}

.testpage-item label {
  display: block;
  font-size: 20px;
  color: #3d4957;
  margin: 0 0 16px;
  line-height: 1.35;
  cursor: pointer;
}

.testpage-item input[type="radio"] {
  margin-right: 8px;
  accent-color: #129fd6;
}

.testpage-action {
  margin-top: 16px;
  text-align: center;
}

.quiz-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
}

.quiz-modal[hidden] {
  display: none;
}

.quiz-modal-stage {
  position: absolute;
  inset: 0;
}

.quiz-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 28, 0.36);
}

.quiz-modal-card {
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: min(640px, calc(100% - 32px));
  border-radius: 10px;
  background: #ececec;
  padding: 18px 22px 24px;
  z-index: 1;
}

.quiz-modal-card-photo {
  display: block;
  width: 100%;
  max-width: 520px;
  height: 260px;
  margin: 0 auto 16px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  object-position: center 30%;
}

.quiz-modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #dde3ea;
  color: #243246;
  font-size: 22px;
  cursor: pointer;
}

.quiz-modal-card h3 {
  margin: 0 0 10px;
  color: #109ad3;
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1.2;
}

.quiz-modal-card p {
  margin: 0 0 10px;
  color: #109ad3;
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1.2;
  font-weight: 700;
}

.quiz-modal-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.quiz-modal-card li a {
  font-size: clamp(14px, 1vw, 18px);
  color: #2b2f36;
  text-decoration: underline;
  font-weight: 700;
  line-height: 1.25;
}

body.quiz-modal-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .testpage-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .testpage-item label {
    font-size: 16px;
  }

  .quiz-modal-card {
    top: 20px;
    width: min(520px, calc(100% - 18px));
    padding: 14px 14px 18px;
  }

  .quiz-modal-card-photo {
    height: 145px;
  }
}

/* Cabinet page */
.cabinet-grid {
  display: grid;
  gap: 22px;
}

.cabinet-auth,
.cabinet-panel {
  padding: 24px;
}

.cabinet-main {
  display: grid;
  gap: 22px;
}

.cabinet-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cabinet-muted {
  margin: 0;
  color: #5b6672;
  font-size: 14px;
}

.cabinet-form {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.cabinet-form h3 {
  margin: 0;
  color: #198fb0;
}

.cabinet-tabs {
  margin-top: 14px;
  display: inline-flex;
  gap: 8px;
  background: #eef3f7;
  padding: 6px;
  border-radius: 999px;
}

.cabinet-tab {
  border: 0;
  background: transparent;
  color: #4d5a67;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cabinet-tab.active {
  background: #1db6d0;
  color: #fff;
}

.cabinet-status {
  min-height: 20px;
  margin: 8px 0 0;
  font-size: 14px;
}

.cabinet-status[data-type="error"] {
  color: #c0392b;
}

.cabinet-status[data-type="success"] {
  color: #1e8e3e;
}

.cabinet-input {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: #2e3844;
}

.cabinet-input input,
.cabinet-input textarea,
.cabinet-input select {
  border: 1px solid #d0d5dd;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.cabinet-list {
  display: grid;
  gap: 12px;
}

.cabinet-item {
  border: 1px solid #dde2e8;
  border-radius: 10px;
  padding: 14px;
  display: grid;
  gap: 6px;
  color: #2e3844;
  font-size: 14px;
}

.cabinet-item strong {
  font-size: 16px;
}

.cabinet-item ul {
  margin: 0;
  padding-left: 18px;
}

.cabinet-panel .btn-outline {
  background: #e8f7fa;
  color: #198fb0;
  border: 1px solid #bde8f1;
}

@media (max-width: 768px) {
  .cabinet-auth,
  .cabinet-panel {
    padding: 16px;
  }

  .cabinet-head {
    align-items: start;
    flex-direction: column;
  }

  .cabinet-tabs {
    width: auto;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .cabinet-tabs button {
    width: auto;
    flex: 0 0 auto;
    padding: 8px 14px;
    font-size: 14px;
  }
}

[data-auth-panel][hidden] {
  display: none;
}

/* Tour page redesign */
.tourpage-hero {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: #fff;
}

.tourpage-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 28, 0.58), rgba(7, 17, 28, 0.26));
}

.tourpage-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tourpage-hero-content {
  position: relative;
  z-index: 3;
  padding: 132px 0 54px;
}

.tourpage-type {
  color: #f5be1f;
  font-size: 32px;
  font-weight: 600;
}

.tourpage-hero-content h1 {
  margin: 6px 0 26px;
  line-height: 1.05;
  font-size: clamp(46px, 6vw, 84px);
}

.tourpage-hero-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.tourpage-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.tourpage-desc-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 24px;
  align-items: start;
}

.tourpage-desc-text {
  max-width: 560px;
}

.tourpage-desc-text p {
  margin: 0;
  color: #2e3844;
  line-height: 1.45;
  font-size: 14px;
}

.tourpage-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  
}

.tourpage-stat-card {
  min-width: 180px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.09);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.tourpage-stat-card::before {
  content: '';
  position: absolute;
  left: -8px;
  top: -8px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 60%, #ffd100 0%, #f7bb00 70%);
  opacity: 0.9;
  z-index: -1;
}

.tourpage-stat-price {
  display: block;
  color: #109ad3;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.tourpage-stat-card small {
  display: block;
  margin-top: 4px;
  color: #5b6672;
  font-size: 14px;
}

.tourpage-calendar-layout {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: start;
}

.tourpage-main-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 10px;
}

.tourpage-calendar-wrap {
  margin-top: 68px;
}

.tourpage-calendar-wrap h3 {
  color: #129fd6;
  font-size: 38px;
  margin: 0 0 16px;
}

.tourpage-calendar {
  background: #ececec;
  border-radius: 10px;
  padding: 14px;
}

.tourpage-calendar-head {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  margin-bottom: 10px;
}

.tourpage-calendar-head button {
  border: none;
  background: transparent;
  font-size: 28px;
  color: #109ad3;
  cursor: pointer;
}

.tourpage-calendar-head strong {
  text-align: center;
  color: #109ad3;
  font-size: 22px;
}

.tourpage-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}

.tourpage-weekdays span {
  text-align: center;
  color: #424c55;
  font-weight: 600;
  font-size: 13px;
}

.tourpage-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.tourpage-day {
  border: none;
  border-radius: 6px;
  background: #fff;
  color: #2d3743;
  font-size: 13px;
  min-height: 34px;
  cursor: pointer;
}

.tourpage-day.empty {
  background: transparent;
}

.tourpage-day.disabled {
  color: #9aa4b2;
  background: #f5f6f8;
  cursor: not-allowed;
}

.tourpage-day.selected {
  background: #1db6d0;
  color: #fff;
}

.tourpage-selected-date {
  margin: 10px 2px 0;
  font-size: 14px;
  color: #5b6672;
}

.tourpage-selected-date strong {
  color: #129fd6;
}

.tourpage-extras {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.tourpage-extra {
  border: none;
  border-radius: 12px;
  padding: 16px 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
  text-align: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.tourpage-extra::before {
  content: '';
  position: absolute;
  left: -10px;
  top: -10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 60%, #ffd100 0%, #f7bb00 70%);
  z-index: -1;
}

.tourpage-extra strong {
  display: block;
  color: #109ad3;
  font-size: 30px;
}

.tourpage-extra span {
  color: #3b4652;
  font-size: 18px;
}

.tourpage-extra.active {
  outline: 2px solid #1db6d0;
  background: #eefbfe;
}

.tourpage-extra-total {
  margin-top: 14px;
  color: #4b5561;
}

.tourpage-extra-total strong {
  color: #129fd6;
}

.tourpage-info-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.tourpage-info-left {
  display: grid;
  gap: 18px;
}

.tourpage-info-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
}

.tourpage-info-item img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.tourpage-info-item h4 {
  margin: 0 0 6px;
  color: #129fd6;
  font-size: 28px;
}

.tourpage-info-item p {
  margin: 0;
  color: #2e3844;
  font-size: 14px;
}

.tourpage-info-right {
  display: grid;
  gap: 14px;
}

.tourpage-warning {
  border-radius: 10px;
  padding: 14px;
  background: #ebebeb;
  color: #444f5a;
  font-size: 14px;
  border-left: 4px solid #f6ca3d;
}

.tourpage-booking-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.tourpage-booking-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 10px;
}

.tourpage-booking-card {
  padding: 20px;
  background: #f0f0f0;
  border-radius: 12px;
}

.tourpage-booking-form {
  display: grid;
  gap: 12px;
}

.tourpage-field {
  display: grid;
  gap: 6px;
  color: #3d4753;
  font-size: 14px;
}

.tourpage-field input {
  border: 1px solid #d5d9de;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
}

.tourpage-total {
  margin-top: 6px;
  color: #3d4753;
}

.tourpage-total strong {
  color: #129fd6;
}

.tourpage-booking-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media (max-width: 1200px) {
  .tourpage-type { font-size: 24px; }
  .tourpage-hero-content h1 { font-size: 52px; }
  .tourpage-stat-price { font-size: 25px; }
  .tourpage-stat-card small { font-size: 12px; }
  .tourpage-calendar-wrap h3 { font-size: 30px; }
  .tourpage-info-item h4 { font-size: 22px; }
  .tourpage-extra strong { font-size: 24px; }
  .tourpage-extra span { font-size: 14px; }
}

@media (max-width: 980px) {
  .tourpage-desc-row,
  .tourpage-calendar-layout,
  .tourpage-info-grid,
  .tourpage-booking-layout {
    grid-template-columns: 1fr;
  }

  .tourpage-stats {
    grid-template-columns: 1fr;
  }

  .tourpage-stat-card {
    min-width: 0;
  }

  .tourpage-calendar-wrap {
    margin-top: 0;
  }

  .tourpage-main-image img,
  .tourpage-booking-image img {
    height: 360px;
  }

  .tourpage-extras {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .tourpage-hero {
    min-height: 380px;
  }

  .tourpage-hero-content {
    padding-top: 110px;
  }

  .tourpage-hero-content h1 {
    font-size: 38px;
  }

  .tourpage-type {
    font-size: 20px;
  }

  .tourpage-extras {
    grid-template-columns: 1fr;
  }

  .tourpage-booking-actions {
    flex-wrap: wrap;
  }
}
.home-popular-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-popular-viewport {
  overflow: hidden;
  width: 100%;
}

.home-popular-track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.home-popular-track .home-popular-card {
  flex: 0 0 calc((100% - 48px) / 4);
}

.home-popular-arrow {
  border: 0;
  background: transparent;
  color: #14abd8;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0 6px;
}

.home-popular-arrow:hover {
  opacity: 0.8;
}
.home-popular-arrow:hover {
  opacity: 0.92;
}

@media (max-width: 1100px) {
  .home-popular-track .home-popular-card {
    flex: 0 0 calc((100% - 32px) / 3);
  }
}

@media (max-width: 768px) {
  .home-popular-track .home-popular-card {
    flex: 0 0 calc((100% - 16px) / 2);
  }

  .home-popular-arrow {
       font-size: 30px;
    padding: 0 4px;
  }
}
@media (max-width: 520px) {
  .home-popular-carousel {
    gap: 8px;
  }

  .home-popular-track .home-popular-card {
    flex: 0 0 100%;
  }
}
.cabinet-cancel-link {
  border: 0;
  background: transparent;
  color: #d64b4b;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  align-self: flex-end;
  transform: translate(500px, -130px);
}

.cabinet-cancel-link:hover {
  text-decoration: underline;
  opacity: 0.9;
}
.reviews-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.reviews-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1e88b8;
  margin: 0;
}

.review-form {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 30px;
}

.review-form textarea {
  width: 100%;
  min-height: 120px;
  border: 1px solid #d9d9d9;
  border-radius: 14px;
  padding: 16px;
  font-size: 16px;
  resize: vertical;
  outline: none;
  box-sizing: border-box;
}

.review-form-bottom {
  margin-top: 15px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.review-form input {
  width: 80px;
  height: 44px;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  padding: 0 10px;
  font-size: 16px;
  box-sizing: border-box;
}

.review-form button {
  height: 44px;
  padding: 0 20px;
  border: none;
  border-radius: 12px;
  background: #1e88b8;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease;
}

.review-form button:hover {
  background: #166d90;
}

.reviews-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.review-card {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-card b {
  font-size: 18px;
  color: #111;
}

.review-card p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}

.review-card small {
  color: #999;
}

.reviews-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.reviews-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1e88b8;
  margin: 0;
}

.reviews-controls {
  display: flex;
  gap: 10px;
}

.reviews-controls button {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: #1e88b8;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: 0.2s ease;
}

.reviews-controls button:hover {
  background: #166d90;
}

.review-form {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 30px;
}

.review-form textarea {
  width: 100%;
  min-height: 120px;
  border: 1px solid #d9d9d9;
  border-radius: 14px;
  padding: 16px;
  font-size: 16px;
  resize: vertical;
  outline: none;
  box-sizing: border-box;
}

.review-form-bottom {
  margin-top: 15px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.review-form input {
  width: 80px;
  height: 44px;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  padding: 0 10px;
  font-size: 16px;
  box-sizing: border-box;
}

.review-form button {
  height: 44px;
  padding: 0 20px;
  border: none;
  border-radius: 12px;
  background: #1e88b8;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease;
}

.review-form button:hover {
  background: #166d90;
}

.reviews-carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.reviews-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.review-card {
  min-width: calc(50% - 10px);
  background: #f5f5f5;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.review-card b {
  font-size: 18px;
  color: #111;
}

.review-card p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}

.review-card small {
  color: #999;
}

.review-delete-btn {
  border: none;
  background: #e74c3c;
  color: white;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: 0.2s ease;
}

.review-delete-btn:hover {
  background: #c0392b;
}

@media (max-width: 900px) {
  .review-card {
    min-width: 100%;
  }

  .reviews-header h2 {
    font-size: 32px;
  }
}

.reviews-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.review-rating {
  position: relative;
  display: inline-block;
}

.review-rating input {
  width: 80px;
  height: 42px;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  padding: 0 10px 0 10px;
  font-size: 16px;
  box-sizing: border-box;
}

/* сама звезда */
.review-rating::after {
  content: '★';
  position: absolute;
  right: 43px;
  top: 50%;
  transform: translateY(-50%);
  color: #f5b301;
  font-size: 16px;
  pointer-events: none;
}
.auth-agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.4;
  color: #444;
}

.auth-agreement input {
  margin-top: 3px;
}

.auth-agreement a {
  color: #1e88b8;
  text-decoration: none;
}

.auth-agreement a:hover {
  text-decoration: underline;
}
.policy-container {
  max-width: 900px;
  margin: 80px auto;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 20px;
  line-height: 1.7;
}

.policy-container h1 {
  color: #1e88b8;
  margin-bottom: 20px;
}

.policy-container h2 {
  margin-top: 25px;
  color: #333;
}

.policy-container ul {
  padding-left: 20px;
}

.policy-container p {
  color: #555;
} 