@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500;700;800&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --primary: hsl(155, 33%, 36%);
  --secondary: hsl(161, 19%, 22%);
  --accent: hsl(147, 45%, 42%);
  --surface: #f4f4f1;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--surface);
    color: #2a2a2a;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
  }
  .navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e0;
  }
  .navbar-brand {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .navbar-brand img {
    width: 51px;
    height: 51px;
    object-fit: cover;
    border-radius: 12px;
  }
  .navbar-nav .nav-link {
    color: var(--secondary);
    font-weight: 600;
    padding: 0.5rem 1rem;
  }
  .navbar-nav .nav-link:hover {
    color: var(--primary);
  }
  .navbar-toggler {
    border-color: var(--primary);
  }
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(69, 138, 106, 0.25);
  }

#contact-body {
  background-color: #f7f6f3;
  padding: 96px 0;
  font-family: 'Open Sans', sans-serif;
  color: #2b2b2b;
}

#contact-body h1,
#contact-body h2,
#contact-body h3 {
  font-family: 'Roboto', sans-serif;
}

#contact-body .page-heading {
  color: hsl(161, 19%, 22%);
  font-weight: 700;
}

#contact-body .page-lead {
  color: #444;
  max-width: 680px;
}

#contact-body .card {
  border: 1px solid #e0ded8;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  background-color: #ffffff;
}

#contact-body .info-card {
  background-color: hsl(161, 19%, 22%);
  color: #f7f6f3;
  border-radius: 20px;
  border: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 40px;
  height: 100%;
}

#contact-body .info-card h3 {
  color: #ffffff;
  margin-bottom: 24px;
}

#contact-body .info-card p,
#contact-body .info-card a {
  color: #f0efe9;
}

#contact-body .info-card a {
  text-decoration: underline;
}

#contact-body .info-card a:hover {
  color: hsl(147, 45%, 65%);
}

#contact-body .info-item {
  margin-bottom: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

#contact-body .info-item i {
  font-size: 1.2rem;
  color: hsl(147, 45%, 55%);
  margin-top: 3px;
}

#contact-body .form-card {
  padding: 40px;
}

#contact-body .form-label {
  font-weight: 600;
  color: hsl(161, 19%, 22%);
}

#contact-body .form-control {
  border-radius: 12px;
  border: 1px solid #d5d3cc;
  padding: 12px 16px;
}

#contact-body .form-control:focus {
  border-color: hsl(147, 45%, 42%);
  box-shadow: 0 0 0 0.2rem rgba(56, 142, 96, 0.2);
}

#contact-body .btn-submit {
  background-color: hsl(155, 33%, 36%);
  border: none;
  color: #ffffff;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 12px;
  transition: background-color 0.2s ease;
}

#contact-body .btn-submit:hover {
  background-color: hsl(147, 45%, 42%);
  color: #ffffff;
}

#contact-body .map-link {
  color: hsl(147, 45%, 60%);
  font-weight: 600;
  text-decoration: none;
}

#contact-body .map-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

#contact-body .cta-banner {
  background-color: hsl(147, 45%, 42%);
  border-radius: 20px;
  padding: 48px;
  color: #ffffff;
  text-align: center;
  margin-top: 80px;
}

#contact-body .cta-banner h3 {
  color: #ffffff;
}

#contact-body .cta-banner p {
  color: #f0f7f2;
}

#contact-body .cta-banner .btn {
  background-color: #ffffff;
  color: hsl(161, 19%, 22%);
  font-weight: 700;
  border-radius: 12px;
  padding: 12px 32px;
  border: none;
}

#contact-body .cta-banner .btn:hover {
  background-color: hsl(155, 33%, 36%);
  color: #ffffff;
}

@media (max-width: 767px) {
  #contact-body {
    padding: 64px 0;
  }
  #contact-body .form-card,
  #contact-body .info-card {
    padding: 28px;
  }
  #contact-body .cta-banner {
    padding: 32px 20px;
  }
}

footer {
    background: hsl(161, 19%, 22%);
    color: #f4f4f1;
    font-family: 'Open Sans', sans-serif;
    padding: 80px 0 24px;
    border-radius: 24px 24px 0 0;
  }
  footer h5 {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    margin-bottom: 16px;
  }
  footer p, footer li, footer a {
    color: #e6e6e3;
  }
  footer a {
    text-decoration: none;
    transition: color 0.2s ease;
  }
  footer a:hover {
    color: hsl(147, 45%, 62%);
  }
  footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  footer .footer-links li {
    margin-bottom: 10px;
  }
  footer hr {
    border-color: rgba(255,255,255,0.15);
    margin: 32px 0 16px;
  }
  .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: hsl(155, 33%, 36%);
    color: #ffffff;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.1rem;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .social-icons a:hover {
    background: hsl(147, 45%, 42%);
    color: #ffffff;
    transform: translateY(-3px);
  }
  .footer-bottom-text {
    font-size: 0.875rem;
    color: #cfcfcb;
  }

  #privacyNotice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1080;
    background: #ffffff;
    color: #2b2b2b;
    border-top: 3px solid hsl(155, 33%, 36%);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 18px 0;
    max-height: 60vh;
    overflow-y: auto;
    font-family: 'Open Sans', sans-serif;
  }
  #privacyNotice h6 {
    font-family: 'Roboto', sans-serif;
    color: hsl(161, 19%, 22%);
    margin-bottom: 6px;
    font-weight: 700;
  }
  #privacyNotice p, #privacyNotice li {
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: #333333;
  }
  #privacyNotice ul {
    padding-left: 18px;
    margin-bottom: 10px;
  }
  .cookie-btn {
    border-radius: 16px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    flex: 1;
  }
  .btn-cookie-accept {
    background: hsl(155, 33%, 36%);
    color: #ffffff;
  }
  .btn-cookie-accept:hover {
    background: hsl(147, 45%, 42%);
    color: #ffffff;
  }
  .btn-cookie-reject {
    background: #ffffff;
    color: hsl(161, 19%, 22%);
    border-color: hsl(161, 19%, 22%);
  }
  .btn-cookie-reject:hover {
    background: hsl(161, 19%, 22%);
    color: #ffffff;
  }
  .cookie-manage-link {
    font-size: 0.8rem;
    color: hsl(155, 33%, 36%);
    text-decoration: underline;
  }
  .cookie-manage-link:hover {
    color: hsl(147, 45%, 42%);
  }

#portfolio-section {
  font-family: 'Open Sans', sans-serif;
  background: #f7f6f3;
  padding: 96px 0;
  color: #2a2a2a;
}
#portfolio-section h1,
#portfolio-section h2,
#portfolio-section h3,
#portfolio-section h4 {
  font-family: 'Roboto', sans-serif;
  color: hsl(161, 19%, 22%);
}
#portfolio-section .intro-wrap {
  max-width: 860px;
  margin: 0 auto 64px;
  text-align: center;
}
#portfolio-section .intro-wrap p {
  font-size: 1.05rem;
  line-height: 1.7;
}
#portfolio-section .sub-block {
  max-width: 900px;
  margin: 0 auto 56px;
}
#portfolio-section .sub-block h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}
#portfolio-section .sub-block p {
  line-height: 1.7;
  color: #3a3a3a;
}
#portfolio-section .card {
  border: 1px solid #e2e0da;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  overflow: hidden;
  background: #fff;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
#portfolio-section .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
}
#portfolio-section .card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
#portfolio-section .card-body {
  padding: 24px;
}
#portfolio-section .badge-category {
  background: hsl(147, 45%, 42%);
  color: #fff;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 12px;
}
#portfolio-section .card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
#portfolio-section .card p {
  font-size: 0.94rem;
  color: #444;
  line-height: 1.6;
}
#portfolio-section .btn-view {
  background: hsl(155, 33%, 36%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 9px 18px;
  font-weight: 600;
  font-size: 0.9rem;
}
#portfolio-section .btn-view:hover {
  background: hsl(161, 19%, 22%);
  color: #fff;
}
#portfolio-section .modal-content {
  border-radius: 20px;
  border: none;
}
#portfolio-section .modal-header {
  background: hsl(161, 19%, 22%);
  color: #f7f6f3;
  border-radius: 20px 20px 0 0;
}
#portfolio-section .modal-header .btn-close {
  filter: invert(1);
}
#portfolio-section .modal-body img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}
#portfolio-section .stats-strip {
  background: #fff;
  border: 1px solid #e2e0da;
  border-radius: 20px;
  padding: 32px;
  max-width: 900px;
  margin: 0 auto 64px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
  gap: 20px;
}
#portfolio-section .stats-strip .stat-num {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: hsl(155, 33%, 36%);
}
#portfolio-section .stats-strip .stat-label {
  font-size: 0.85rem;
  color: #555;
}
#portfolio-section .cta-box {
  background: hsl(155, 33%, 36%);
  color: #fff;
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  max-width: 900px;
  margin: 80px auto 0;
}
#portfolio-section .cta-box h3 {
  color: #fff;
  margin-bottom: 12px;
}
#portfolio-section .cta-box p {
  color: #eef3f0;
  margin-bottom: 24px;
}
#portfolio-section .cta-box .btn-cta {
  background: #fff;
  color: hsl(161, 19%, 22%);
  font-weight: 700;
  border-radius: 12px;
  padding: 12px 30px;
  border: none;
}
#portfolio-section .cta-box .btn-cta:hover {
  background: #f0f0f0;
  color: hsl(161, 19%, 22%);
}
@media (max-width: 767px) {
  #portfolio-section .cta-box { padding: 32px 20px; }
  #portfolio-section .stats-strip { padding: 24px 16px; }
}

.hero-section{
  background:#f4f4f1;
  padding:96px 0;
  font-family:'Open Sans',sans-serif;
  color:#222;
}
.hero-section h1{
  font-family:'Roboto',sans-serif;
  font-weight:700;
  color:hsl(161, 19%, 22%);
  font-size:2.5rem;
  margin-bottom:1rem;
}
.hero-section h2{
  font-family:'Roboto',sans-serif;
  font-weight:500;
  color:hsl(155, 33%, 36%);
  font-size:1.3rem;
  margin-bottom:1.2rem;
}
.hero-section p.hero-desc{
  font-size:1.05rem;
  color:#333;
  margin-bottom:1.5rem;
}
.hero-img-wrap{
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 4px 18px rgba(0,0,0,0.1);
  border:1px solid #e0e0dc;
}
.hero-img-wrap img{
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  display:block;
}
.hero-list{
  list-style:none;
  padding:0;
  margin:0 0 2rem 0;
}
.hero-list li{
  margin-bottom:0.7rem;
  font-size:1rem;
  color:#333;
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.hero-list li i{
  color:hsl(147, 45%, 42%);
  font-size:1.2rem;
  margin-top:2px;
}
.btn-hero-primary{
  background:hsl(155, 33%, 36%);
  border:1px solid hsl(155, 33%, 36%);
  color:#fff;
  padding:0.75rem 1.75rem;
  border-radius:16px;
  font-family:'Roboto',sans-serif;
  font-weight:500;
  transition:all 0.25s ease;
}
.btn-hero-primary:hover{
  background:hsl(161, 19%, 22%);
  border-color:hsl(161, 19%, 22%);
  color:#fff;
}
.btn-hero-secondary{
  background:transparent;
  border:1px solid hsl(155, 33%, 36%);
  color:hsl(155, 33%, 36%);
  padding:0.75rem 1.75rem;
  border-radius:16px;
  font-family:'Roboto',sans-serif;
  font-weight:500;
  transition:all 0.25s ease;
}
.btn-hero-secondary:hover{
  background:hsl(147, 45%, 42%);
  border-color:hsl(147, 45%, 42%);
  color:#fff;
}
@media(max-width:767px){
  .hero-section{padding:64px 0;}
  .hero-section h1{font-size:1.9rem;}
}

#why-us {
  background-color: #f7f6f3;
  padding: 96px 0;
  font-family: 'Open Sans', sans-serif;
}

#why-us h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(161, 19%, 22%);
  font-weight: 700;
}

#why-us .lead-text {
  color: #444;
  max-width: 680px;
  margin: 0 auto;
}

#why-us .advantage-card {
  background-color: #ffffff;
  border: 1px solid #e2e0da;
  border-radius: 20px;
  padding: 40px 28px;
  height: 100%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#why-us .advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: hsl(147, 45%, 42%);
}

#why-us .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: hsl(155, 33%, 36%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background-color 0.25s ease;
}

#why-us .advantage-card:hover .icon-wrap {
  background-color: hsl(147, 45%, 42%);
}

#why-us .icon-wrap i {
  font-size: 28px;
  color: #ffffff;
}

#why-us .advantage-card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  color: hsl(161, 19%, 22%);
  font-weight: 700;
  margin-bottom: 12px;
}

#why-us .advantage-card p {
  color: #4a4a4a;
  font-size: 0.97rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.services-section {
  background-color: #f7f6f3;
  padding: 96px 0;
  font-family: 'Open Sans', sans-serif;
}
.services-section h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(161, 19%, 22%);
  font-weight: 700;
}
.services-section .lead-text {
  color: #4a4a4a;
  max-width: 700px;
}
.service-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff;
  border: 1px solid #e2e2de;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
  border-color: hsl(147, 45%, 42%);
}
.service-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: hsl(155, 33%, 36%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  transition: background 0.25s ease;
}
.service-card:hover .service-icon {
  background: hsl(147, 45%, 42%);
}
.service-body h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.15rem;
  color: hsl(161, 19%, 22%);
  font-weight: 700;
  margin-bottom: 8px;
}
.service-body p {
  color: #4a4a4a;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.service-price {
  display: inline-block;
  background: #eef4f0;
  color: hsl(155, 33%, 36%);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
}
.services-note {
  background: #ffffff;
  border: 1px solid #e2e2de;
  border-radius: 20px;
  padding: 20px 28px;
  color: #4a4a4a;
  font-size: 0.95rem;
}

#testimonials {
  background: #f7f6f3;
  padding: 96px 0;
  font-family: 'Open Sans', sans-serif;
}
#testimonials h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(161, 19%, 22%);
  font-weight: 700;
}
#testimonials .lead-sub {
  color: #4a4a4a;
  max-width: 640px;
}
#testimonials .testimonial-card {
  background: #ffffff;
  border: 1px solid #e2e0da;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  padding: 28px 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#testimonials .testimonial-card.short {
  justify-content: center;
}
#testimonials .testimonial-card.accent-border {
  border-left: 4px solid hsl(147, 45%, 42%);
}
#testimonials .testimonial-card.secondary-bg {
  background: hsl(161, 19%, 22%);
  color: #f4f4f1;
  border: 1px solid hsl(161, 19%, 22%);
}
#testimonials .testimonial-card.secondary-bg .reviewer-name, #testimonials .testimonial-card.secondary-bg .reviewer-loc, #testimonials .testimonial-card.secondary-bg .quote-text {
  color: #f4f4f1;
}
#testimonials .stars {
  color: hsl(147, 45%, 42%);
  font-size: 1.05rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
#testimonials .testimonial-card.secondary-bg .stars {
  color: #f4c96b;
}
#testimonials .quote-text {
  color: #333333;
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}
#testimonials .reviewer-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
#testimonials .reviewer-initial {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: hsl(155, 33%, 36%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
#testimonials .testimonial-card.secondary-bg .reviewer-initial {
  background: hsl(147, 45%, 42%);
}
#testimonials .reviewer-name {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #222222;
  font-size: 0.95rem;
  margin: 0;
}
#testimonials .reviewer-loc {
  color: #6b6b6b;
  font-size: 0.82rem;
  margin: 0;
}
#testimonials .stats-strip {
  background: #ffffff;
  border: 1px solid #e2e0da;
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
#testimonials .stats-strip .num {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  color: hsl(155, 33%, 36%);
  display: block;
}
#testimonials .stats-strip .lbl {
  color: #555555;
  font-size: 0.85rem;
}
@media (max-width: 767px) {
  #testimonials { padding: 64px 0; }
}

#company {
  background-color: #f7f6f3;
  padding: 96px 0;
  font-family: 'Open Sans', sans-serif;
  color: #2a2a2a;
}
#company h2, #company h3 {
  font-family: 'Roboto', sans-serif;
  color: hsl(161, 19%, 22%);
}
#company .lead-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #333;
}
#company img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid #e0ddd6;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
#company .value-card {
  background-color: #ffffff;
  border: 1px solid #e5e2da;
  border-radius: 20px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
#company .value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: hsl(155, 33%, 36%);
}
#company .team-card {
  background-color: #ffffff;
  border: 1px solid #e5e2da;
  border-radius: 20px;
  padding: 22px;
  height: 100%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
#company .team-card h4 {
  font-family: 'Roboto', sans-serif;
  color: hsl(161, 19%, 22%);
  margin-bottom: 4px;
}
#company .team-card .role {
  color: hsl(147, 45%, 42%);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 10px;
  display: block;
}
#company .stat-strip {
  background-color: hsl(155, 33%, 36%);
  border-radius: 20px;
  padding: 28px;
  color: #f7f6f3;
}
#company .stat-strip .stat-num {
  font-family: 'Roboto', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #ffffff;
}
#company .stat-strip .stat-label {
  font-size: 0.85rem;
  color: #e6f0ea;
}
@media (max-width: 767px) {
  #company { padding: 64px 0; }
}

#mailing .newsletter-section-mailing {
  background-color: #f4f4f1;
  padding: 96px 0;
}
#mailing .newsletter-card-mailing {
  background-color: #ffffff;
  border: 1px solid #e0e0dc;
  border-radius: 22px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  padding: 56px 40px;
}
#mailing .newsletter-card-mailing h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(161, 19%, 22%);
  font-weight: 700;
  margin-bottom: 16px;
}
#mailing .newsletter-card-mailing p {
  font-family: 'Open Sans', sans-serif;
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.6;
}
#mailing .newsletter-form-mailing .form-control {
  border-radius: 16px;
  border: 1px solid #ccc;
  padding: 12px 18px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}
#mailing .newsletter-form-mailing .form-control:focus {
  border-color: hsl(147, 45%, 42%);
  box-shadow: 0 0 0 0.2rem rgba(76, 155, 118, 0.25);
}
#mailing .newsletter-btn-mailing {
  background-color: hsl(155, 33%, 36%);
  color: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 12px 32px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  transition: background-color 0.2s ease-in-out;
  white-space: nowrap;
}
#mailing .newsletter-btn-mailing:hover {
  background-color: hsl(147, 45%, 42%);
  color: #ffffff;
}
#mailing .newsletter-note-mailing {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: #666;
  margin-top: 18px;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #mailing .newsletter-card-mailing {
    padding: 40px 24px;
  }
}

#contacts {
  background-color: #f7f6f3;
  padding: 96px 0;
  font-family: 'Open Sans', sans-serif;
}
#contacts h2, #contacts h3 {
  font-family: 'Roboto', sans-serif;
  color: hsl(161, 19%, 22%);
}
#contacts .lead-text {
  color: #444;
}
#contacts .contact-card {
  background-color: #ffffff;
  border: 1px solid #e2e2de;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  padding: 40px;
}
#contacts .info-card {
  background-color: #ffffff;
  border: 1px solid #e2e2de;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  padding: 40px;
  height: 100%;
}
#contacts .info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
#contacts .info-item:last-child {
  margin-bottom: 0;
}
#contacts .info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background-color: hsl(155, 33%, 36%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
#contacts .info-item a {
  color: hsl(155, 33%, 36%);
  text-decoration: none;
  font-weight: 600;
}
#contacts .info-item a:hover {
  color: hsl(147, 45%, 42%);
  text-decoration: underline;
}
#contacts .info-item p, #contacts .info-item span {
  color: #333333;
  margin-bottom: 2px;
}
#contacts .find-us-link {
  display: inline-block;
  margin-top: 6px;
  color: hsl(147, 45%, 42%);
  font-weight: 600;
  text-decoration: none;
}
#contacts .find-us-link:hover {
  text-decoration: underline;
  color: hsl(155, 33%, 36%);
}
#contacts .form-label {
  color: #333333;
  font-weight: 600;
}
#contacts .form-control {
  border-radius: 12px;
  border: 1px solid #d7d7d2;
  padding: 12px 16px;
}
#contacts .form-control:focus {
  border-color: hsl(155, 33%, 36%);
  box-shadow: 0 0 0 0.2rem rgba(59, 122, 92, 0.15);
}
#contacts .btn-send {
  background-color: hsl(155, 33%, 36%);
  border: none;
  color: #ffffff;
  font-weight: 600;
  border-radius: 14px;
  padding: 12px 32px;
  transition: background-color 0.2s ease;
}
#contacts .btn-send:hover {
  background-color: hsl(147, 45%, 42%);
  color: #ffffff;
}
#contacts .response-note {
  background-color: hsl(155, 33%, 94%);
  border-radius: 14px;
  padding: 14px 18px;
  color: hsl(161, 19%, 22%);
  font-size: 0.95rem;
  margin-top: 20px;
}
@media (max-width: 767px) {
  #contacts .contact-card, #contacts .info-card {
    padding: 26px;
  }
  #contacts {
    padding: 64px 0;
  }
}

#notice {
  background-color: #f7f6f3;
  padding: 96px 0;
  font-family: 'Open Sans', sans-serif;
}
#notice .disclaimer-card {
  background-color: #ffffff;
  border: 1px solid #e0e0dc;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  padding: 48px 40px;
}
#notice .disclaimer-icon {
  font-size: 2.2rem;
  color: hsl(147, 45%, 42%);
  flex-shrink: 0;
}
#notice h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(161, 19%, 22%);
  font-weight: 700;
  margin-bottom: 16px;
}
#notice p {
  color: #333333;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  #notice .disclaimer-card {
    padding: 32px 24px;
  }
}



  

  .thankyou-section {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, hsl(155, 33%, 96%) 0%, hsl(147, 45%, 94%) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 15px;
  }

  .thankyou-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(28, 58, 46, 0.12);
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .thankyou-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
  }

  .success-icon-wrapper {
    width: 110px;
    height: 110px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(58, 122, 92, 0.35);
    animation: pop-in 0.5s ease-out;
  }

  @keyframes pop-in {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
  }

  .success-icon-wrapper svg {
    width: 55px;
    height: 55px;
    stroke: #fff;
  }

  .thankyou-heading {
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 18px;
  }

  .thankyou-text {
    color: #4a5a54;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 12px;
  }

  .thankyou-highlight {
    background: hsl(147, 45%, 96%);
    border-left: 4px solid var(--accent);
    border-radius: 10px;
    padding: 18px 22px;
    margin: 28px 0;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .thankyou-highlight svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    margin-top: 3px;
  }

  .thankyou-highlight p {
    margin: 0;
    color: var(--secondary);
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .btn-home {
    background: var(--primary);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    padding: 12px 36px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(58, 122, 92, 0.3);
  }

  .btn-home:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(58, 122, 92, 0.4);
  }

  .thankyou-note {
    margin-top: 24px;
    font-size: 0.88rem;
    color: #8a9891;
  }

  @media (max-width: 576px) {
    .thankyou-card {
      padding: 36px 22px;
    }
    .thankyou-heading {
      font-size: 1.5rem;
    }
    .success-icon-wrapper {
      width: 90px;
      height: 90px;
    }
    .success-icon-wrapper svg {
      width: 44px;
      height: 44px;
    }
  }
