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

@font-face {
    font-family: 'Pushkin';
    src: url('fonts/Pushkin.woff2') format('woff2'),
        url('fonts/Pushkin.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
body {
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: #33342E;
  background-color: #F8F5F0;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
}

/* Header */
.header {
  padding: 24px 0;
  background-color: #F8F5F0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 17px;
}

.logo-image {
  width: 47.51px;
  height: 54.47px;
}

.logo-text {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.6;
  text-transform: uppercase;
  text-align: center;
  color: #33342E;
  width: 239px;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-link {
  font-size: 16px;
  line-height: 1.6;
  text-transform: uppercase;
  text-decoration: none;
  color: #33342E;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #A29359;
}

.contact-btn {
  width: 238px;
  height: 50px;
  border: 1px solid #33342E;
  background: transparent;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #33342E;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Cormorant';
}

.contact-btn:hover {
  background-color: #33342E;
  color: #F8F5F0;
}
 /* Hamburger button (hidden on desktop) */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      width: 32px;
      height: 32px;
      background: transparent;
      border: none;
      cursor: pointer;
    }

    .hamburger span {
      height: 3px;
      width: 100%;
      background: #333;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    /* Mobile menu panel */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 100%;

      background: #F8F5F0;
      box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
      transition: right 0.3s ease;
      display: flex;
      flex-direction: column;
      padding: 24px 20px 20px;
      z-index: 1001;
    }

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

    /* Overlay when menu is open */
    .menu-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: #F8F5F0;
      z-index: 150;
    }

    .menu-overlay.active {
      display: block;
    }

    /* Hamburger animation when active */
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translateY(7px);
    }

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

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translateY(-7px);
    }

/* Hero Section */
.hero {
  padding: 100px 0;
  background-color: #F8F5F0;
}

.hero-content {
  display: flex;
  align-items: flex-start;
  gap: 100px;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-subtitle {
  font-family: 'Pushkin', serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 60px;
  color: #A29359;

}

.hero-title {
  font-size: 64px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #33342E;
  margin-bottom: 11px;
    font-weight: 600;
}

.hero-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #33342E;
  margin-bottom: 31px;
}

.hero-btn {
  width: 238px;
  height: 50px;
  border: 1px solid #33342E;
  background: transparent;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #33342E;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Cormorant';
}

.hero-btn:hover {
  background-color: #33342E;
  color: #F8F5F0;
}

.hero-image {
  flex-shrink: 0;
}

.hero-image img {
  width: 604px;
  height: 657px;
  object-fit: cover;
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: #FFFFFF;
}

.about-content {
  display: flex;
  align-items: flex-start;
  gap: 100px;
}

.about-image {
  flex-shrink: 0;
}

.about-image img {
  width: 498px;
  height: 546px;
  object-fit: cover;
}

.about-text {
  flex: 1;
  padding-top: 50px;
}

.section-subtitle {
  font-family: 'Pushkin', serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 60px;
  color: #A29359;
 
}

.section-title {
 font-size: 64px;
    line-height: 77px;
    text-transform: uppercase;
    color: #33342E;
    
    font-weight: 600;
}

.about-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #33342E;
}

/* Target Audience Section */
.target-audience {
  padding: 100px 0;
  background-color: #F8F5F0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.audience-cards {
  display: flex;
  gap: 80px;
  margin-bottom: 80px;
  justify-content: center;
}

.audience-card {
  width: 300px;
  text-align: center;
}

.card-icon {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.card-icon img {
  width: auto;
  height: 104px;
}

.card-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #33342E;
  margin-bottom: 20px;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #33342E;
}

.section-btn {
  display: block;
  width: 238px;
  height: 50px;
  border: 1px solid #33342E;
  background: transparent;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #33342E;
  cursor: pointer;
  margin: 0 auto;
  transition: all 0.3s ease;
  font-family: 'Cormorant';
  font-weight: 600;
}

.section-btn:hover {
  background-color: #33342E;
  color: #F8F5F0;
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.services-title-section {
  flex: 1;
}

.services-subtitle {
  font-family: 'Pushkin', serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  color: #A29359;
  margin-bottom: 20px;
}

.services-main-title {
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #33342E;
  letter-spacing: 2px;
}

.services-contact-btn {
  width: 200px;
  height: 50px;
  border: 1px solid #33342E;
  background: transparent;
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #33342E;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.services-contact-btn:hover {
  background-color: #33342E;
  color: #F8F5F0;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.service-card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  border-bottom: 1px solid #E8E8E8;
  padding-bottom: 40px;
}

.service-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-image {
  flex-shrink: 0;
  width: 293px;
  height: 352px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  flex: 1;
  padding-left: 40px;
}

.service-title {
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #33342E;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.service-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #33342E;
  margin-bottom: 30px;
}

.service-features {
  margin-bottom: 40px;
}

.service-features p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #33342E;
  margin-bottom: 8px;
}

.service-footer {
     display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.service-footer .service-price {
  font-family: 'Pushkin', serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  color: #A29359;
  margin-right: auto;
}

.service-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.service-btn {
  width: 150px;
  height: 40px;
  border: 1px solid #33342E;
  background: transparent;
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #33342E;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-btn:hover {
  background-color: #33342E;
  color: #F8F5F0;
}

.service-btn-full {
  width: 280px;
  height: 40px;
  border: 1px solid #33342E;
  background: transparent;
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #33342E;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.service-btn-full:hover {
  background-color: #33342E;
  color: #F8F5F0;
}

.service-details {
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #33342E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-details:hover {
  color: #A29359;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 20px;
  background-color: #F8F5F0;
}

.testimonials-grid {
  display: flex;
  gap: 32px;
  margin-bottom: 80px;
}

.testimonial-card {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #8C6C4F;
  padding: 24px;
}

.testimonial-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 35px;
}

.testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-family: 'Pushkin', serif;
  font-weight: 400;
  font-size: 42px;
  line-height: 1.2;
  color: #A29359;
  margin-bottom: 5px;
}

.testimonial-rating {
  display: flex;
  gap: 2.3px;
}

.testimonial-rating img {
  width: 27.75px;
  height: 27.75px;
}

.testimonial-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #33342E;
}

/* FAQ Section */
.faq {
  padding: 100px 20px;
  background-color: #FFFFFF;
}

.faq-list {
  max-width: 816px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-item {
  border-bottom: 1px solid #A29359;
  padding: 25px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h4 {
  font-size: 24px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #33342E;
  flex: 1;
  font-weight: 600;
}

.faq-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 20px;
}

.faq-toggle img {
  width: 19px;
  height: 22px;
}

.faq-answer {
  padding-top: 20px;
  display: none;
}

.faq-answer.active {
  display: block;
}

.faq-answer p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #33342E;
}

/* Contact Section */
.contact {
  position: relative;
  padding: 100px 20px;
  background-color: #F8F5F0;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 318px;
  z-index: 1;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 300px;
}

.contact-text {
  flex: 1;
}

.contact-title {
  font-size: 74px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #33342E;
  margin-bottom: 20px;
  max-width: 600px;
  font-weight: 600;
}

.contact-subtitle {
  font-family: 'Pushkin', serif;
  font-weight: 400;
  font-size: 89.56px;
  line-height: 1.2;
  color: #A29359;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.contact-circle {
  position: relative;
  width: 219px;
  height: 219px;
  border: 1px solid #33342E;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('images/yQbWRNXzYU.png');
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.contact-circle:hover {
  transform: scale(1.05);
  background-color: #33342E;
}

.contact-circle-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  width: 31px;
  height: 31px;
}

.contact-label {
  font-size: 20px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #33342E;
}
.contact-circle:hover .contact-label {
   color: #fff;
}
.contact-circle:hover .contact-icon {
  content: url('images/mail-send-icon-fff.png');
}
.social-links {
  display: flex;
  gap: 60px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #33342E;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #A29359;
}

.social-link img {
  width: 32px;
  height: 32px;
}

.social-link span {
  font-size: 20px;
  line-height: 1.3;
  text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 50px;
  }
  
  .hero-content,
  .about-content {
    flex-direction: column;
    gap: 50px;
    padding: 0px 20px;
  }
  
  .hero-image img,
  .about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
  }
  
  .audience-cards {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .services-header {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  
  .services-main-title {
    font-size: 32px;
  }
  
  .services-contact-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .service-card {
    flex-direction: column;
    gap: 30px;
  }
  
  .service-content {
    padding-left: 0;
  }
  
  .service-image {
    width: 100%;
    height: 250px;
  }
  
  .service-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .service-actions {
    align-items: flex-start;
    width: 100%;
  }
  
  .service-btn,
  .service-btn-full {
    width: 100%;
  }
  
  .testimonials-grid {
    flex-direction: column;
  }
  
  .contact-content {
    flex-direction: column;
    gap: 50px;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .navigation,
  .contact-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }
  
  .logo-text{
    width: 220px;
    font-size: 18px;
  }
 .logo-section {
 
  gap:0px;
}
  .logo-image{
    width: 30.51px;
    height: 31.47px;
  }
  
  .services {
    padding: 60px 0;
  }
  .about{
     padding: 0px;
  }
  .target-audience{
    padding: 30px 10px;
  }
  .services-subtitle {
    font-size: 36px;
  }
  
  .services-main-title {
    font-size: 30px;
  }
  
  .service-title {
    font-size: 24px;
  }
  
  .service-btn-full {
    

  }
  .navigation {
    gap: 20px;
  }
  .hero{
    padding: 20px 0px;
  }
  .hero-btn{
    width: 100%;
  }
  .hero-title,
  .section-title {
    font-size: 36px;
  }
  .service-btn-full{
    height: 45px;
    width: 100%;
    font-size: 12px;
  }
  
  .hero-subtitle,
  .section-subtitle {
    font-size: 36px;
  }
  
  .contact-title {
    font-size: 48px;
  }
  
  .contact-subtitle {
    font-size: 60px;
  }
  
  .audience-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .social-links {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-rating {
display: flex ;
    gap: 2.3px;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.testimonial-header {
    display: block;
    align-items: flex-start;
    gap: 37px;
    margin-bottom: 35px;
    text-align: center;
}

}



    .navigation-mobile {
      display: grid;
      margin-top: 30px;
      gap: 20px;
    }

    .mobile-menu .contact-btn {

      display: block;
      margin-top: 45px;

      width: 50%;

    }

    .mobile-menu .social-links {
      margin-top: 25px;
    }