:root {
  --clr-primary:   #8AA29E;
  --clr-secondary: #F2E8CF;
  --clr-accent:    #D98C6F;
  --clr-bg:        #FEFCF7;
  --clr-text:      #333;
  --ff-title: 'Great Vibes', cursive;
  --ff-body:  'Montserrat', sans-serif;
}

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

body {
  font-family: var(--ff-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
}

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

.header {
  background: var(--clr-bg);
  padding: 0.75rem 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo .logo__img {
  width: 100px;
}
.header__title {
  flex: 1;
  text-align: center;
}
.header__title h1 {
  font-family: var(--ff-title);
  font-size: 2rem;
  color: var(--clr-primary);
}

.btn--primary {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  background: var(--clr-accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
}

.btn--primary:hover {
  background: var(--clr-primary);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  background:
    linear-gradient(rgba(254,252,247,0.70), rgba(254,252,247,0.70)),
    url('assets/images/hero-bg.jpg') center/cover no-repeat;
  padding: 8rem 0;
  text-align: center;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.hero__content h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.hero__content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.hero__trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;      
  gap: 1.5rem;           
  margin-top: 2.5rem;   
  font-size: 1rem;       
  color: #333;
  opacity: 1;
  font-weight: 500;
}

.trust__item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;  
}

.about {
  padding: 6rem 0;
}
.about__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.about__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.about__item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
}
.about__item--wide {
  grid-column: 1 / -1;
}
.about__item ul,
.about__item ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.about__item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--clr-primary);
}
.about__item p {
  font-size: 1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer {
  background: var(--clr-secondary);
  padding: 2rem 0;
}
.footer__inner {
  text-align: center;
}
.footer__social {
  margin-bottom: 1rem;
}
.footer__social a {
  margin: 0 0.5rem;
  display: inline-block;
}
.social__icon {
  width: 24px;
  height: auto;
  vertical-align: middle;
  transition: transform 0.2s;
}
.footer__social a:hover .social__icon {
  transform: translateY(-2px);
}
.footer__copy {
  font-size: 0.9rem;
  opacity: 0.8;
}
