* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #222;
  background-color: #f9f9f9;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

.logo span {
  color: #f57c00;
}

.nav {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.nav a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.nav a:hover {
  color: #f57c00;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;

  background: linear-gradient(145deg,
      #f9f5ff 0%,
      #f4fbff 40%,
      #fff8f3 100%
  );

  border-bottom: 1px solid #e2e5e8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

header:hover {
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}


.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;

  font-size: 1.6rem;
  font-weight: 700;
  color: #1c1f25;
  text-decoration: none;
  letter-spacing: 0.5px;

  transition: color 0.25s ease;
}

.logo:hover {
  color: #2d4a70;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;

  border: 1px solid #d6d8da;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.logo:hover .logo-icon {
  border-color: #2d4a70;
  transform: scale(1.05);
}

/* ————————— МЕНЮ ————————— */

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

.nav a {
  color: #3a3f46;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;

  padding: 6px 2px;
  transition: color 0.25s ease;
  position: relative;
}

.nav a:hover {
  color: #2d4a70;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2d4a70;
  transition: width 0.25s ease;
}

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

/* ————————— БУРГЕР ————————— */

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  cursor: pointer;
}

.burger span {
  height: 3px;
  width: 100%;
  background: #3a3f46;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

/* ————————— МОБІЛЬНЕ МЕНЮ ————————— */

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 260px;

    flex-direction: column;
    align-items: flex-start;
    gap: 22px;

    background: #ffffff;
    padding: 30px 24px;

    border-left: 1px solid #e2e5e8;
    box-shadow: -4px 0 12px rgba(0,0,0,0.06);

    transition: right 0.35s ease;
  }

  .nav.active {
    right: 0;
  }

  .burger {
    display: flex;
  }
}

.hero-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  background: linear-gradient(120deg, #e0f2f1, #f0f7f4);
  position: relative;
  overflow: hidden;
  gap: 50px;
  font-family: "Poppins", sans-serif;
}

.hero-modern__left {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.hero-modern__eyebrow {
  font-weight: 700;
  color: #4aa89f;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-modern__title {
  font-size: 3rem;
  font-weight: 900;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-modern__subtitle {
  font-size: 1.1rem;
  color: #556e7a;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-modern__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn--primary {
  background: linear-gradient(90deg, #4aa89f, #81c7b5);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn--primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(74,168,159,0.35);
}

.btn--secondary {
  background: transparent;
  border: 2px solid #4aa89f;
  color: #4aa89f;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn--secondary:hover {
  background: #4aa89f;
  color: #fff;
}

.hero-modern__right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-modern__image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transform: rotate(-3deg);
  transition: transform 0.7s ease, box-shadow 0.7s ease;
}

.hero-modern__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-modern__image:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Decorative circles */
.hero-modern__decor span {
  position: absolute;
  border-radius: 50%;
  background: rgba(74,168,159,0.15);
  z-index: 1;
}

.hero-modern__decor span:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 15%;
}

.hero-modern__decor span:nth-child(2) {
  width: 80px;
  height: 80px;
  bottom: 20%;
  right: 10%;
}

.hero-modern__decor span:nth-child(3) {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 20%;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-modern {
    flex-direction: column-reverse;
    text-align: center;
    padding: 60px 5%;
    gap: 40px;
  }

  .hero-modern__right {
    width: 100%;
  }

  .hero-modern__left {
    max-width: 100%;
  }

  .hero-modern__image {
    width: 80%;
    margin: 0 auto;
    transform: rotate(0deg);
  }
}


.build-services {
  background: #fdfcfb;
  color: #1a1a1a;
  padding: 100px 20px;
  font-family: "Poppins", sans-serif;
}

.build-services__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.build-services__title {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: #3b3b3b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.build-services__subtitle {
  color: #6b6b6b;
  font-size: 1.15rem;
  margin-bottom: 70px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.build-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.build-services__card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.build-services__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.build-services__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 20px 20px 0 0;
}

.build-services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(95%);
}

.build-services__card:hover img {
  transform: scale(1.08);
  filter: brightness(100%);
}

.build-services__card-title {
  font-size: 1.3rem;
  color: #2f2f2f;
  margin: 20px 18px 10px;
  font-weight: 600;
  text-align: left;
}

.build-services__card-text {
  color: #5f5f5f;
  font-size: 0.95rem;
  line-height: 1.65;
  padding: 0 18px 25px;
  text-align: left;
  flex-grow: 1;
}

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

@media (max-width: 768px) {
  .build-services__title {
    font-size: 2rem;
  }

  .build-services__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .build-services__image {
    height: 220px;
  }

  .build-services__card-title {
    font-size: 1.2rem;
    padding: 0 15px;
  }

  .build-services__card-text {
    padding: 0 15px 25px;
  }
}
.build-about {
  position: relative;
  background: #fcfcfb;
  color: #2b2b2b;
  font-family: "Poppins", sans-serif;
  padding: 80px 20px;
}

.build-about__wrapper {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.build-about__image {
  position: relative;
  overflow: hidden;
  height: 500px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.build-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.05);
  filter: brightness(92%);
  border-radius: 20px;
}

.build-about__image:hover img {
  transform: scale(1.1);
  filter: brightness(100%);
}

.build-about__content {
  background: linear-gradient(145deg, #ffffff 0%, #f4f6f8 100%);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(79,129,120,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.5s ease;
}

.build-about__title {
  font-size: 2.6rem;
  color: #34495e;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.build-about__text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #555;
  margin-bottom: 20px;
}

.build-about__btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  border-radius: 50px;
  background: #34495e;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.35s ease;
  text-decoration: none;
  align-self: flex-start;
  box-shadow: 0 6px 20px rgba(52,73,94,0.3);
}

.build-about__btn:hover {
  background: #2c3e50;
  transform: scale(1.05);
}

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

  .build-about__image {
    height: 350px;
  }

  .build-about__content {
    padding: 40px 25px;
  }

  .build-about__title {
    font-size: 2rem;
  }
}

.projects-section {
  background: #f5f7f8;
  padding: 100px 20px;
  font-family: "Poppins", sans-serif;
  color: #34495e;
  text-align: center;
}

.projects-section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.projects-section__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.projects-section__subtitle {
  font-size: 1.15rem;
  color: #6c7a89;
  margin-bottom: 60px;
  line-height: 1.7;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.projects-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.projects-section__card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.projects-section__card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(95%);
}

.projects-section__card:hover img {
  transform: scale(1.05);
  filter: brightness(100%);
}

.projects-section__info {
  padding: 20px 18px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.projects-section__info h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 12px;
  font-weight: 700;
}

.projects-section__info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5d6c83;
  flex-grow: 1;
}

/* Hover Effect */
.projects-section__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(79,129,120,0.15);
}

/* Responsive */
@media (max-width: 1024px) {
  .projects-section__title {
    font-size: 2.4rem;
  }
  .projects-section__subtitle {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .projects-section__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .projects-section__title {
    font-size: 2rem;
  }
}

.faq-section {
  background: linear-gradient(180deg, #faf7f5, #ece9f1);
  color: #2a2a2a;
  font-family: 'Inter', sans-serif;
  padding: 90px 20px;
}

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

.faq-section__title {
  font-size: 2.4rem;
  color: #5b4a8f;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  font-weight: 700;
}

.faq-section__subtitle {
  font-size: 1.1rem;
  color: #6e6e6e;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* Items layout — now a single-column card grid */
.faq-section__items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  border: 1px solid #e2dff3;
  transition: box-shadow 0.3s ease, transform 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(105, 95, 140, 0.15);
}

.faq-item__question {
  width: 100%;
  padding: 20px 24px;
  background: #f4f1fa;
  border: none;
  color: #5b4a8f;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-item__question:hover {
  background: #eae6f7;
}

.faq-item__icon {
  font-size: 1.5rem;
  color: #5b4a8f;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  color: #9e7bda;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: #4d4d4d;
  font-size: 1rem;
  line-height: 1.7;
  background: #ffffff;
  transition: max-height 0.45s ease, padding 0.45s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 300px;
  padding: 18px 24px 22px;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .faq-section__title {
    font-size: 2rem;
  }
  .faq-section__subtitle {
    font-size: 1rem;
  }
  .faq-item__question {
    font-size: 1rem;
  }
  .faq-item__answer {
    font-size: 0.95rem;
  }
}


.contact-section {
  background: linear-gradient(145deg, #f7faff 0%, #fef9f2 55%, #faf5ff 100%);
  color: #3b3b3b;
  font-family: "Inter", sans-serif;
  padding: 90px 20px;
}

.contact-section__container {
  max-width: 1180px;
  margin: 0 auto;
}

.contact-section__header {
  text-align: center;
  margin-bottom: 55px;
}

.contact-section__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #6a7fa5;
  margin-bottom: 10px;
}

.contact-section__subtitle {
  font-size: 1.05rem;
  opacity: 0.75;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* New split layout */
.contact-section__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

/* Contact Information (left column now) */
.contact-section__info {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #7b89a9;
  margin-bottom: 10px;
}

.contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.98rem;
  line-height: 1.5;
}

.contact-item a {
  color: #6a7fa5;
  font-weight: 500;
  text-decoration: none;
  transition: 0.25s;
}

.contact-item a:hover {
  color: #485c7d;
  text-shadow: 0 0 6px rgba(150,170,200,0.3);
}

.contact-icon {
  font-size: 1.4rem;
}

/* Form (right column) */
.contact-section__form {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form__title {
  font-size: 1.3rem;
  color: #7b89a9;
  margin-bottom: 12px;
}

.contact-section__form input,
.contact-section__form textarea {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #dcdfe6;
  background: #f9fafc;
  font-size: 1rem;
  color: #333;
  transition: all 0.25s ease;
}

.contact-section__form input:focus,
.contact-section__form textarea:focus {
  outline: none;
  border-color: #8ea3c2;
  box-shadow: 0 0 10px rgba(140,160,190,0.25);
  background: #ffffff;
}

.contact-section__form button {
  padding: 14px 28px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(95deg, #8ea3c2, #b6c7dd);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.contact-section__form button:hover {
  background: linear-gradient(95deg, #7d90ac, #a4b6cc);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(120,140,170,0.25);
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-section__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-section__title {
    font-size: 2rem;
  }
}

.footer {
  background: linear-gradient(160deg, #faf8ff 0%, #f5fbff 40%, #fff9f3 100%);
  font-family: "Inter", sans-serif;
  color: #444;
  padding: 70px 30px 40px;
  border-top: 1px solid #dcdcdc;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

/* Brand block */
.footer__brand-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.refined-logo span {
  font-size: 2.3rem;
  font-weight: 700;
  background: linear-gradient(90deg, #6c7db2, #8ab7c7, #d7b8d5);
  -webkit-background-clip: text;
  color: transparent;
}

.footer__tagline {
  font-size: 1rem;
  max-width: 320px;
  opacity: 0.75;
}

/* Inline socials */
.footer__social-inline {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.footer__social-inline img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(120,130,150,0.18);
  transition: .25s;
}

.footer__social-inline img:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(120,130,150,0.3);
}

/* Right columns */
.footer__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer__col h4 {
  color: #5b6d8b;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}

.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__col a {
  color: #444;
  text-decoration: none;
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
  font-size: 0.95rem;
  transition: 0.25s;
}

.footer__col a:hover {
  border-bottom: 1px solid #8ca1c3;
  color: #5c6f8d;
}

/* Address */
.footer__address {
  margin-bottom: 10px;
  max-width: 200px;
}

/* Bottom */
.footer__bottom {
  text-align: center;
  color: #666;
  padding-top: 35px;
  font-size: 0.88rem;
  margin-top: 40px;
  border-top: 1px solid #e4e4e4;
}

/* Responsive */
@media (max-width: 992px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

@media (max-width: 650px) {
  .footer__columns {
    grid-template-columns: 1fr;
  }
}



.policy {
  background: #0e0e0e;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 80px 20px;
  line-height: 1.7;
}

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

.policy__title {
  font-size: 2.8rem;
  color: #34495e;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
}

.policy__updated {
  text-align: center;
  color: #b0b0b0;
  font-size: 0.95rem;
  margin-bottom: 40px;
  font-style: italic;
}

.policy__section {
  margin-bottom: 35px;
}

.policy__section h2 {
  font-size: 1.6rem;
  color: #34495e;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.policy__section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #34495e;
  border-radius: 50%;
}

.policy__section p,
.policy__section li {
  color: #d0d0d0;
  font-size: 1rem;
}

.policy__section ul {
  padding-left: 20px;
  list-style: disc;
  margin-top: 10px;
}

.policy__section a {
  color: #34495e;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.policy__section a:hover {
  color: #76b2a7;
}

@media (max-width: 768px) {
  .policy__title {
    font-size: 2.2rem;
  }

  .policy__section h2 {
    font-size: 1.4rem;
  }
}

.contact-location {
  padding: 140px 20px;
  background: linear-gradient(135deg, #fef9f3, #dbeafc);
  text-align: center;
  color: #2c3e50;
  font-family: 'Roboto', sans-serif;
  position: relative;
  overflow: hidden;
}

.contact-location::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(44,62,80,0.1), transparent 70%);
  animation: rotate 25s linear infinite;
  z-index: 0;
}

.location-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #34495e;
  position: relative;
  z-index: 1;
}

.location-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.route-btn {
  display: inline-block;
  padding: 16px 38px;
  border-radius: 50px;
  border: 2px solid #34495e;
  background: #34495e;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.route-btn:hover {
  background: transparent;
  color: #34495e;
  transform: scale(1.05);
  border-color: #34495e;
  box-shadow: 0 0 20px rgba(44,62,80,0.2), 0 0 30px rgba(44,62,80,0.15);
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .location-title { font-size: 2.2rem; }
  .location-description { font-size: 1rem; }
  .route-btn { padding: 14px 28px; font-size: 0.95rem; }
}


.location-map {
  flex: 1 1 600px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 35px 120px rgba(0,0,0,0.22);
  transition: transform 0.5s ease;
}

.location-map img {
  width: 100%;
  border-radius: 30px;
  transition: transform 0.5s ease;
}

.location-map:hover {
  transform: scale(1.04);
}
.trusted-section {
  background: linear-gradient(135deg, #fef9f3, #e0f0ff);
  padding: 120px 20px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  color: #333;
}

.trusted-title {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.5px;
}

.trusted-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
}

/* Cards Grid: 3 в ряд на великих екранах */
.trusted-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Individual Card */
.trusted-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trusted-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Quote */
.trusted-quote {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
  position: relative;
}

.trusted-quote::before,
.trusted-quote::after {
  content: '“';
  font-size: 2rem;
  color: rgba(44, 62, 80, 0.2);
  position: absolute;
}

.trusted-quote::before { top: -10px; left: -5px; }
.trusted-quote::after { content:'”'; bottom: -15px; right: -5px; }

/* Author */
.trusted-author {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 1024px) {
  .trusted-cards { grid-template-columns: repeat(2, 1fr); gap: 25px; }
  .trusted-title { font-size: 2.4rem; }
  .trusted-subtitle { font-size: 1rem; }
}

@media (max-width: 768px) {
  .trusted-cards { grid-template-columns: 1fr; gap: 20px; }
  .trusted-title { font-size: 2rem; }
  .trusted-subtitle { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .trusted-card { padding: 30px 20px; }
  .trusted-title { font-size: 1.8rem; }
  .trusted-subtitle { font-size: 0.9rem; }
  .trusted-quote { font-size: 0.95rem; }
  .trusted-author { font-size: 0.9rem; }
}


.why-us {
  background: linear-gradient(135deg, #f8f9fb 0%, #f1f3f6 100%);
  padding: 120px 20px;
  text-align: center;
  color: #333;
  font-family: "Inter", "Poppins", sans-serif;
}

.why-us__title {
  font-size: 2.7rem;
  color: #2a2a2a;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.why-us__subtitle {
  font-size: 1.15rem;
  color: #555;
  max-width: 720px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* GRID */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD */
.why-us__item {
  background: #ffffff;
  padding: 45px 30px;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid #ececec;
  position: relative;
}

.why-us__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.15);
}

.why-us__icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.why-us__item h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 15px;
}

.why-us__item p {
  color: #666;
  font-size: 1rem;
  line-height: 1.65;
}

/* GRID: 4 картки в один ряд на великих екранах */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* чотири колонки */
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

/* RESPONSIVE: 2 колонки на середніх, 1 колонка на маленьких */
@media (max-width: 1024px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .why-us__title { font-size: 2.4rem; }
  .why-us__subtitle { font-size: 1.05rem; }
}

@media (max-width: 768px) {
  .why-us__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .why-us__title { font-size: 2rem; }
  .why-us__subtitle { font-size: 1rem; }
}


.projects-hero {
  background: linear-gradient(135deg, #fef9f3, #dbeafc);
  color: #2c3e50;
  text-align: center;
  padding: 160px 20px;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.projects-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(44,62,80,0.1), transparent 70%);
  animation: rotateGradient 25s linear infinite;
  z-index: 0;
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.projects-title {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #34495e;
  text-shadow: 0 0 12px rgba(139,211,199,0.6), 0 0 20px rgba(139,211,199,0.4);
  position: relative;
  z-index: 1;
}

.projects-subtitle {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #34495e;
  text-shadow: 0 0 6px rgba(255,255,255,0.1), 0 0 12px rgba(139,211,199,0.2);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .projects-title { font-size: 2.6rem; }
  .projects-subtitle { font-size: 1.1rem; }
}

.projects-gallery {
  padding: 120px 20px;
  background: #fdfdfd;
  text-align: center;
}

.projects-gallery h2 {
  font-size: 2.6rem;
  color: #34495e;
  margin-bottom: 60px;
  font-weight: 700;
  letter-spacing: 1px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(79,129,120,0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 1px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.5);
}
.project-process {
  background: linear-gradient(135deg, #f6f5f3, #eaeaea);
  padding: 120px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #5a5a5a;
}

.project-process h2 {
  font-size: 2.6rem;
  margin-bottom: 60px;
  color: #a8bcd7;
  font-weight: 700;
  letter-spacing: 1px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  background: linear-gradient(145deg, #ffffff, #f0f4f7);
  border-radius: 24px;
  padding: 45px 30px;
  box-shadow: 0 10px 25px rgba(160,160,160,0.2);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(160,160,160,0.3);
  background: linear-gradient(145deg, #f9f9f9, #e6eef3);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: #c8d8e4;
  position: absolute;
  top: 15px;
  right: 20px;
  opacity: 0.15;
}

.step h3 {
  color: #7e96b4;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.step p {
  color: #6b6b6b;
  line-height: 1.7;
  font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .project-process h2 { font-size: 2.4rem; }
  .step h3 { font-size: 1.3rem; }
  .step p { font-size: 0.95rem; }
}

@media (max-width: 768px) {
  .process-steps { gap: 30px; }
  .project-process h2 { font-size: 2rem; }
}

@media (max-width: 500px) {
  .step { padding: 35px 20px; }
  .step h3 { font-size: 1.1rem; }
  .step p { font-size: 0.9rem; }
}

.services-hero {
  position: relative;
  background: linear-gradient(135deg, #f0f4f7, #e6eef3);
  padding: 140px 20px;
  text-align: center;
  color: #5a5a5a;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(200,215,225,0.15), transparent 70%);
  animation: rotateGradient 25s linear infinite;
  z-index: 0;
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.services-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #7e96b4;
  text-shadow: 0 0 10px rgba(160,160,160,0.3);
  position: relative;
  z-index: 1;
}

.services-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #6b6b6b;
  margin-bottom: 35px;
  text-shadow: 0 0 5px rgba(160,160,160,0.15);
  position: relative;
  z-index: 1;
}

.cta-btn {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 50px;
  background: #a8bcd7;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 15px rgba(160,160,160,0.4);
}

.cta-btn:hover {
  background: #e6eef3;
  color: #7e96b4;
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(160,160,160,0.5);
}

@media (max-width: 768px) {
  .services-title { font-size: 2.4rem; }
  .services-subtitle { font-size: 1rem; }
  .cta-btn { padding: 12px 30px; font-size: 0.95rem; }
}



/* SERVICES LIST */
.services-list {
  background: #f6f8fa;
  padding: 120px 20px;
  text-align: center;
  color: #4a4a4a;
  font-family: 'Poppins', sans-serif;
}

.services-list h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #7e96b4;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 45px 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}

.service-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #5a6b82;
}

.service-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b6b6b;
}

/* SERVICES PROCESS */
.services-process {
  background: #eaf1f5;
  padding: 120px 20px;
  text-align: center;
  color: #4a4a4a;
}

.services-process h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #7e96b4;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 30px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: #c1d1e0;
  position: absolute;
  top: 15px;
  right: 20px;
  opacity: 0.15;
}

.step h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #5a6b82;
}

.step p {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b6b6b;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 картки в ряд */
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr); /* 2 картки на середніх екранах */
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr; /* 1 картка на мобільних */
    gap: 25px;
  }
}



.services-cta {
  background: #34495e;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.services-cta h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.services-cta p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: #e6f4f1;
}

.services-cta .cta-btn {
  background: #fff;
  color: #000000;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.services-cta .cta-btn:hover {
  background: #dff1ed;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .services-hero {
    padding: 120px 15px;
  }
  .services-hero h1 {
    font-size: 2.4rem;
  }
  .services-hero p {
    font-size: 1rem;
  }
  .services-list h2,
  .services-process h2,
  .services-cta h2 {
    font-size: 1.8rem;
  }
  .service-item,
  .step {
    padding: 30px 20px;
  }
}
.about-hero {
  position: relative;
  background: linear-gradient(135deg, #f2f2f5, #e0e6eb); /* пастельні відтінки */
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #34495e;
  padding: 120px 20px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(187, 222, 214, 0.2), transparent 80%);
  animation: rotateGradient 30s linear infinite;
  z-index: 0;
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.about-title {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #5d6c83; /* пастельний синьо-сірий */
  text-shadow: 0 0 12px rgba(187, 222, 214, 0.4), 0 0 20px rgba(187, 222, 214, 0.3);
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}

.about-subtitle {
  font-size: 1.25rem;
  color: #6b7a8f;
  line-height: 1.8;
  margin-bottom: 50px;
  text-shadow: 0 0 8px rgba(255,255,255,0.05), 0 0 15px rgba(187, 222, 214, 0.15);
  z-index: 1;
  position: relative;
}

.cta-btn {
  display: inline-block;
  padding: 16px 44px;
  border-radius: 50px;
  background: #a8d5ba; /* пастельний зелений */
  color: #34495e;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 12px rgba(168, 213, 186, 0.6);
}

.cta-btn:hover {
  background: transparent;
  color: #5d6c83;
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(168, 213, 186, 0.8), 0 0 35px rgba(135, 197, 170, 0.5);
}

@media (max-width: 768px) {
  .about-title { font-size: 2.6rem; }
  .about-subtitle { font-size: 1.05rem; }
  .cta-btn { padding: 14px 36px; font-size: 0.95rem; }
}

.about-history-premium {
  background: #fdfcfb; /* світлий пастельний фон */
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.about-history-premium h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 70px;
  color: #7d8fa6; /* пастельний синьо-сірий */
}

.history-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.history-content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(187, 222, 214, 0.3); /* ніжний пастельний колір */
  transform: translateY(-50%);
  z-index: 1;
}

.history-item {
  position: relative;
  width: calc(25% - 20px);
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  text-align: center;
  z-index: 2;
  transition: all 0.4s ease;
}

.history-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.history-year {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #5d6c83;
  margin-bottom: 12px;
}

.history-item p {
  color: #6b7a8f;
  line-height: 1.6;
  font-size: 0.95rem;
}

.about-values {
  background: #f9fafc; /* пастельний фон */
  padding: 120px 20px;
  text-align: center;
  position: relative;
}

.about-values::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #a8d5ba; /* пастельний зелений */
}

.about-values h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #7d8fa6;
  margin: 70px 0 70px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 елементи в рядок */
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  background: linear-gradient(180deg, #fdfdfd 0%, #f6f8f7 100%);
  border-radius: 16px;
  padding: 40px 25px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: #a8d5ba;
  opacity: 0.85;
  transition: width 0.3s ease;
}

.value-item:hover::before {
  width: 100%;
  opacity: 0.1;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-item h3 {
  color: #5d6c83;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.value-item p {
  color: #6b7a8f;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .history-content {
    flex-direction: column;
    gap: 30px;
  }
  .history-content::before { display: none; }
  .history-item { width: 100%; }
}

@media (max-width: 768px) {
  .about-values h2, .about-history-premium h2 { font-size: 2rem; }
}



.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-member {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.team-member img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 1.2rem;
  color: #b88a44;
  margin-bottom: 8px;
}

.team-member p {
  color: #555;
  font-size: 0.95rem;
}

.about-values {
  background: #fff;
  padding: 100px 20px;
  text-align: center;
}

.about-values h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #222;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.value-item {
  background: #faf7f2;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}

.value-item h3 {
  color: #b88a44;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.value-item p {
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-hero h1 { font-size: 2.2rem; }
  .about-hero p { font-size: 1rem; }
  .about-history h2, .about-team h2, .about-values h2 { font-size: 1.8rem; }
  .history-container p, .team-member p, .value-item p { font-size: 0.95rem; }
  .team-member, .value-item { padding: 25px 15px; }
}
.cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #2b2b2b, #111);
  color: #f5f5f5;
  padding: 20px 15px;
  text-align: center;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
  border-top: 3px solid #34495e;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookies-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookies-content {
  max-width: 1024px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  flex-wrap: wrap;
}

.cookies-content p {
  margin: 0;
  color: #f5f5f5;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookies-content a {
  color: #34495e;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookies-content a:hover {
  color: #76b2a7;
}

.cookies-btn {
  background: #34495e;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cookies-btn:hover {
  background: #76b2a7;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .cookies-content {
    flex-direction: column;
    text-align: center;
  }

  .cookies-btn {
    margin-top: 10px;
  }
}