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

:root {
  --primary: hsl(222, 21%, 36%);
  --secondary: hsl(228, 19%, 21%);
  --accent: hsl(214, 43%, 58%);
  --surface: #f4f4f1;
  --color-primary: hsl(222, 21%, 36%);
  --color-secondary: hsl(228, 19%, 21%);
  --color-accent: hsl(214, 43%, 58%);
}

body{
  font-family: 'Open Sans', sans-serif;
  background-color: var(--surface);
  color: #2b2b2b;
}
h1, h2, h3, h4, h5, h6{
  font-family: 'Roboto', sans-serif;
}
.site-header{
  background-color: #ffffff;
  border-bottom: 1px solid #e3e2de;
}
.site-header .navbar-brand{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--secondary);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}
.site-header .navbar-brand img{
  border-radius: 8px;
}
.site-header .nav-link{
  color: var(--primary);
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
}
.site-header .nav-link:hover,
.site-header .nav-link:focus{
  color: #ffffff;
  background-color: var(--accent);
}
.site-header .navbar-toggler{
  border-color: var(--primary);
}
.site-header .navbar-toggler:focus{
  box-shadow: 0 0 0 0.2rem rgba(69, 90, 130, 0.25);
}

footer {
  background: hsl(228, 19%, 21%);
  color: #f4f4f1;
  font-family: 'Open Sans', sans-serif;
  padding: 48px 0 24px;
}
footer h5, footer h6 {
  font-family: 'Roboto', sans-serif;
  color: #f4f4f1;
  margin-bottom: 16px;
}
footer p, footer a {
  color: #d8dae0;
  text-decoration: none;
  font-size: 0.95rem;
}
footer a:hover {
  color: hsl(214, 43%, 58%);
  text-decoration: underline;
}
footer .footer-links li {
  margin-bottom: 8px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: hsl(222, 21%, 36%);
  color: #f4f4f1;
  margin-right: 8px;
  transition: background 0.2s ease;
}
.footer-social a:hover {
  background: hsl(214, 43%, 58%);
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 32px;
  padding-top: 16px;
  font-size: 0.85rem;
  color: #b8bcc6;
}
#privacyBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: hsl(228, 19%, 21%);
  color: #f4f4f1;
  padding: 16px;
  border-top: 3px solid hsl(214, 43%, 58%);
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Open Sans', sans-serif;
}
#privacyBanner h6 {
  font-family: 'Roboto', sans-serif;
  color: #f4f4f1;
  margin-bottom: 6px;
}
#privacyBanner p, #privacyBanner li {
  font-size: 0.85rem;
  color: #d8dae0;
  margin-bottom: 6px;
}
.cookie-btn {
  border-radius: 8px;
  font-size: 0.9rem;
  padding: 8px 16px;
  font-weight: 600;
  border: none;
  transition: all 0.2s ease;
  width: 100%;
}
.btn-accept-all {
  background: hsl(214, 43%, 58%);
  color: #fff;
}
.btn-accept-all:hover {
  background: hsl(214, 43%, 48%);
  color: #fff;
}
.btn-reject-optional {
  background: transparent;
  color: #f4f4f1;
  border: 1px solid #f4f4f1;
}
.btn-reject-optional:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.btn-manage {
  color: hsl(214, 43%, 58%);
  font-size: 0.85rem;
  text-decoration: underline;
}
.btn-manage:hover {
  color: #fff;
}

#contact-section {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Open Sans', sans-serif;
  color: #2b2f3a;
}
#contact-section .contact-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px;
}
#contact-section h1,
#contact-section h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(222, 21%, 36%);
}
#contact-section p {
  line-height: 1.7;
}
#contact-section .intro {
  margin-bottom: 40px;
}
#contact-section .info-block {
  background: #fff;
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 40px;
  border: 1px solid #e4e3df;
}
#contact-section .info-block dl {
  margin: 0;
}
#contact-section .info-block dt {
  font-weight: 600;
  color: hsl(222, 21%, 36%);
  margin-top: 14px;
}
#contact-section .info-block dt:first-child {
  margin-top: 0;
}
#contact-section .info-block dd {
  margin-left: 0;
  margin-bottom: 0;
}
#contact-section .info-block a {
  color: hsl(214, 43%, 58%);
  text-decoration: none;
}
#contact-section .info-block a:hover {
  text-decoration: underline;
}
#contact-section .find-us {
  font-size: 0.95rem;
  color: #4a4e5a;
  margin-top: 6px;
}
#contact-section .form-block {
  background: #fff;
  border-radius: 8px;
  padding: 28px 30px;
  border: 1px solid #e4e3df;
}
#contact-section label {
  font-weight: 600;
  color: hsl(228, 19%, 21%);
  margin-bottom: 6px;
  display: block;
}
#contact-section .form-control {
  border-radius: 6px;
  border: 1px solid #cfd0d6;
  padding: 10px 12px;
  margin-bottom: 18px;
}
#contact-section .form-control:focus {
  border-color: hsl(214, 43%, 58%);
  box-shadow: 0 0 0 0.2rem rgba(88, 118, 168, 0.25);
}
#contact-section textarea.form-control {
  min-height: 130px;
  resize: vertical;
}
#contact-section .btn-send {
  background-color: hsl(222, 21%, 36%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
#contact-section .btn-send:hover {
  background-color: hsl(214, 43%, 58%);
  color: #fff;
}
#contact-section .cta-line {
  text-align: center;
  margin-top: 48px;
}
#contact-section .cta-line a {
  color: #fff;
  background-color: hsl(228, 19%, 21%);
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  display: inline-block;
}
#contact-section .cta-line a:hover {
  background-color: hsl(214, 43%, 58%);
}
#contact-section hr {
  border: none;
  border-top: 1px solid #e0dfda;
  margin: 40px 0;
}

#services-page {
  background-color: #f5f4f1;
  font-family: 'Open Sans', sans-serif;
  color: #2a2d38;
  padding: 52px 0;
}
#services-page .container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
#services-page h1 {
  font-family: 'Roboto', sans-serif;
  color: hsl(228, 19%, 21%);
  font-size: 2rem;
  margin-bottom: 16px;
}
#services-page .intro {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #3a3d47;
}
#services-page .service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 48px 0;
  counter-reset: service-counter;
}
#services-page .service-row {
  counter-increment: service-counter;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #dcdad4;
}
#services-page .service-row:first-child {
  padding-top: 0;
}
#services-page .service-text {
  flex: 1;
}
#services-page .service-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: hsl(222, 21%, 36%);
  margin-bottom: 6px;
  display: flex;
  gap: 8px;
}
#services-page .service-title::before {
  content: counter(service-counter) ".";
  color: hsl(214, 43%, 58%);
  font-weight: 700;
  flex-shrink: 0;
}
#services-page .service-desc {
  font-size: 0.93rem;
  line-height: 1.55;
  color: #4a4d57;
  margin: 0;
  padding-left: 22px;
}
#services-page .service-price {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: hsl(228, 19%, 21%);
  white-space: nowrap;
  padding-top: 1px;
}
#services-page .note-box {
  background-color: #eceae4;
  border-radius: 8px;
  padding: 20px 22px;
  margin-bottom: 48px;
  font-size: 0.93rem;
  line-height: 1.6;
  color: #3a3d47;
}
#services-page h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  color: hsl(228, 19%, 21%);
  margin-bottom: 20px;
}
#services-page .qa-item {
  margin-bottom: 22px;
}
#services-page .qa-question {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: hsl(222, 21%, 36%);
  margin-bottom: 6px;
}
#services-page .qa-answer {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #3a3d47;
  margin: 0;
}
#services-page .cta-box {
  background-color: hsl(222, 21%, 36%);
  border-radius: 8px;
  padding: 28px 26px;
  text-align: center;
  margin-top: 48px;
}
#services-page .cta-box p {
  color: #f2f2f0;
  font-size: 1rem;
  margin-bottom: 18px;
}
#services-page .cta-box a {
  display: inline-block;
  background-color: hsl(214, 43%, 58%);
  color: #ffffff;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}
#services-page .cta-box a:hover {
  background-color: hsl(214, 43%, 48%);
  color: #ffffff;
}
@media (max-width: 576px) {
  #services-page .service-row {
    flex-direction: column;
  }
  #services-page .service-price {
    padding-left: 22px;
  }
}

#about-section {
  font-family: 'Open Sans', sans-serif;
  background-color: #f5f4f1;
  color: hsl(228, 19%, 21%);
  padding: 52px 0;
}
#about-section .narrow-col {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
#about-section h1,
#about-section h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(222, 21%, 36%);
  margin-bottom: 18px;
}
#about-section h1 {
  font-size: 2.1rem;
}
#about-section h2 {
  font-size: 1.5rem;
  margin-top: 48px;
}
#about-section p {
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: 1.02rem;
}
#about-section img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin: 24px 0;
}
#about-section ul.values-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 18px;
}
#about-section ul.values-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid #e1dfda;
  line-height: 1.6;
}
#about-section ul.values-list li:last-child {
  border-bottom: none;
}
#about-section ul.values-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: hsl(214, 43%, 58%);
  font-weight: bold;
}
#about-section .qa-block {
  margin-top: 24px;
}
#about-section .qa-item {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e1dfda;
}
#about-section .qa-item:last-child {
  border-bottom: none;
}
#about-section .qa-item h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: hsl(228, 19%, 21%);
  margin-bottom: 8px;
}
#about-section .qa-item p {
  margin-bottom: 0;
}
#about-section .cta-box {
  margin-top: 48px;
  padding: 28px 24px;
  background-color: hsl(222, 21%, 36%);
  border-radius: 8px;
  text-align: center;
}
#about-section .cta-box h2 {
  color: #f7f6f3;
  margin-top: 0;
}
#about-section .cta-box p {
  color: #e8e9ec;
}
#about-section .cta-box a.btn-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 32px;
  background-color: hsl(214, 43%, 58%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
#about-section .cta-box a.btn-cta:hover {
  background-color: hsl(214, 43%, 48%);
  color: #ffffff;
}
@media (max-width: 576px) {
  #about-section h1 {
    font-size: 1.7rem;
  }
  #about-section h2 {
    font-size: 1.3rem;
  }
}

.hero-tender {
  background-color: #f4f4f1;
  padding: 96px 0 52px;
  font-family: 'Open Sans', sans-serif;
}

.hero-tender .hero-col {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-tender .eyebrow {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: hsl(214, 43%, 58%);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-tender h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: hsl(228, 19%, 21%);
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 16px;
}

.hero-tender .rule {
  width: 90px;
  height: 3px;
  background-color: hsl(214, 43%, 58%);
  border-radius: 3px;
  margin: 0 0 24px 0;
}

.hero-tender h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: hsl(222, 21%, 36%);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.hero-tender p.lead-text {
  font-size: 1.05rem;
  color: #333333;
  line-height: 1.65;
  margin-bottom: 32px;
}

.hero-tender .btn-tender {
  background-color: hsl(222, 21%, 36%);
  color: #f8f9fa;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.hero-tender .btn-tender:hover {
  background-color: hsl(214, 43%, 58%);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .hero-tender {
    padding: 64px 0 40px;
  }
  .hero-tender h1 {
    font-size: 1.85rem;
  }
  .hero-tender h2 {
    font-size: 1.1rem;
  }
}

#company {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Open Sans', sans-serif;
  color: hsl(228, 19%, 21%);
}

#company .narrow-column {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px;
}

#company h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(222, 21%, 36%);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 2rem;
}

#company h3 {
  font-family: 'Roboto', sans-serif;
  color: hsl(222, 21%, 36%);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

#company p {
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: 1.02rem;
  color: hsl(228, 19%, 21%);
}

#company img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin: 28px 0;
  display: block;
}

#company .figure-caption {
  font-size: 0.9rem;
  color: hsl(222, 21%, 36%);
  text-align: center;
  margin-top: -18px;
  margin-bottom: 30px;
  font-style: italic;
}

#company ul.values-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

#company ul.values-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid rgba(34, 40, 54, 0.08);
}

#company ul.values-list li:last-child {
  border-bottom: none;
}

#company ul.values-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: hsl(214, 43%, 58%);
  font-weight: 700;
}

#company .fact-line {
  background-color: #ffffff;
  border-left: 3px solid hsl(214, 43%, 58%);
  padding: 16px 20px;
  border-radius: 6px;
  margin: 30px 0;
  color: hsl(228, 19%, 21%);
}

#company .fact-line strong {
  color: hsl(222, 21%, 36%);
}

@media (max-width: 576px) {
  #company h2 {
    font-size: 1.6rem;
  }
  #company h3 {
    font-size: 1.2rem;
  }
}

.services-section {
  background: #f4f4f1;
  padding: 52px 0;
  font-family: 'Open Sans', sans-serif;
  color: #2b2f3a;
}
.services-section .column-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
.services-section h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(228, 19%, 21%);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.services-section .intro-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #3a3f4b;
  margin-bottom: 36px;
}
.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: service-counter;
}
.service-row {
  counter-increment: service-counter;
  border-bottom: 1px solid #ddd9d0;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 16px;
}
.service-row:first-child {
  padding-top: 0;
}
.service-row:last-child {
  border-bottom: none;
}
.service-main {
  flex: 1 1 480px;
}
.service-title-line {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: hsl(222, 21%, 36%);
  margin-bottom: 4px;
}
.service-title-line::before {
  content: counter(service-counter) ". ";
  color: hsl(214, 43%, 58%);
  font-weight: 700;
}
.service-price-inline {
  font-weight: 400;
  color: #5a5f6b;
  font-size: 0.98rem;
}
.service-desc {
  font-size: 0.94rem;
  line-height: 1.6;
  color: #4a4f5b;
  margin: 0;
  padding-left: 1.3rem;
}
.services-note {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd9d0;
  font-size: 0.92rem;
  color: #5a5f6b;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .services-section h2 {
    font-size: 1.55rem;
  }
  .service-title-line {
    font-size: 1rem;
  }
}

#help {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Open Sans', sans-serif;
  color: #222;
}
#help .container {
  max-width: 760px;
}
#help h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(222, 21%, 36%);
  font-weight: 700;
  margin-bottom: 12px;
}
#help .intro {
  color: #333;
  margin-bottom: 36px;
  font-size: 1rem;
  line-height: 1.6;
}
#help .accordion-item {
  border: 1px solid #e1e0dc;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background-color: #fff;
}
#help .accordion-button {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: hsl(228, 19%, 21%);
  background-color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  padding: 16px 20px;
}
#help .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: hsl(222, 21%, 36%);
  box-shadow: none;
}
#help .accordion-button:focus {
  box-shadow: none;
  border-color: hsl(214, 43%, 58%);
}
#help .accordion-button::after {
  filter: none;
}
#help .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
#help .accordion-body {
  background-color: #fff;
  color: #333;
  line-height: 1.65;
  padding: 16px 20px 20px;
  font-size: 0.97rem;
}
@media (max-width: 576px) {
  #help {
    padding: 40px 0;
  }
  #help .accordion-button {
    font-size: 0.94rem;
    padding: 14px 16px;
  }
}

#contacts {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Open Sans', sans-serif;
  color: #2c2c2c;
}
#contacts .contact-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px;
}
#contacts h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(222, 21%, 36%);
  font-weight: 700;
  margin-bottom: 12px;
}
#contacts .lead-text {
  color: #4a4a4a;
  margin-bottom: 40px;
  font-size: 1.02rem;
}
#contacts .info-block {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 24px 26px;
  margin-bottom: 32px;
  border: 1px solid #e6e5e0;
}
#contacts .info-block h3 {
  font-family: 'Roboto', sans-serif;
  color: hsl(228, 19%, 21%);
  font-size: 1.15rem;
  margin-bottom: 16px;
}
#contacts .info-line {
  margin-bottom: 10px;
  font-size: 0.98rem;
  color: #333333;
}
#contacts .info-line strong {
  color: hsl(222, 21%, 36%);
  display: inline-block;
  min-width: 110px;
}
#contacts a.contact-link {
  color: hsl(214, 43%, 58%);
  text-decoration: none;
  font-weight: 600;
}
#contacts a.contact-link:hover {
  text-decoration: underline;
}
#contacts .find-us {
  font-size: 0.92rem;
  color: #555555;
  margin-top: 8px;
  font-style: italic;
}
#contacts .find-us a {
  color: hsl(214, 43%, 58%);
  font-style: normal;
  text-decoration: none;
  font-weight: 600;
}
#contacts .find-us a:hover {
  text-decoration: underline;
}
#contacts form {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 28px 26px;
  border: 1px solid #e6e5e0;
}
#contacts .form-label {
  color: hsl(228, 19%, 21%);
  font-weight: 600;
  font-size: 0.94rem;
  margin-bottom: 4px;
}
#contacts .form-control {
  border-radius: 6px;
  border: 1px solid #cfcfc9;
  padding: 10px 12px;
  font-size: 0.95rem;
  margin-bottom: 18px;
}
#contacts .form-control:focus {
  border-color: hsl(214, 43%, 58%);
  box-shadow: 0 0 0 0.2rem hsla(214, 43%, 58%, 0.25);
}
#contacts textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
#contacts .btn-send {
  background-color: hsl(222, 21%, 36%);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 11px 28px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  transition: background-color 0.2s ease;
}
#contacts .btn-send:hover {
  background-color: hsl(214, 43%, 58%);
  color: #ffffff;
}
#contacts .hours-note {
  font-size: 0.88rem;
  color: #666666;
  margin-top: 6px;
}
@media (max-width: 576px) {
  #contacts .info-block, #contacts form {
    padding: 20px 18px;
  }
}

#notice {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Open Sans', sans-serif;
}
#notice .notice-box {
  max-width: 740px;
  margin: 0 auto;
  padding: 32px 28px;
  background-color: #ffffff;
  border: 1px solid #e0e0dc;
  border-radius: 8px;
}
#notice .notice-icon {
  font-size: 1.9rem;
  color: hsl(214, 43%, 58%);
  margin-right: 14px;
  flex-shrink: 0;
}
#notice h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(222, 21%, 36%);
  font-weight: 700;
  margin-bottom: 0;
}
#notice p {
  color: #333333;
  line-height: 1.75;
  font-size: 1rem;
  margin-top: 18px;
  margin-bottom: 0;
}

#faq-content {
  background: #f4f4f1;
  font-family: 'Open Sans', sans-serif;
  color: #2a2a2a;
  padding: 56px 0;
}
#faq-content .faq-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px;
}
#faq-content h1 {
  font-family: 'Roboto', sans-serif;
  color: hsl(222, 21%, 36%);
  font-size: 2rem;
  margin-bottom: 16px;
}
#faq-content h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(228, 19%, 21%);
  font-size: 1.3rem;
  margin-top: 48px;
  margin-bottom: 12px;
}
#faq-content .intro-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}
#faq-content .accordion-item {
  background: #fff;
  border: 1px solid #e2e0da;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
#faq-content .accordion-button {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: hsl(228, 19%, 21%);
  background: #fff;
  border-radius: 8px;
}
#faq-content .accordion-button:not(.collapsed) {
  color: #fff;
  background: hsl(222, 21%, 36%);
  box-shadow: none;
}
#faq-content .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem hsla(214, 43%, 58%, 0.35);
}
#faq-content .accordion-button::after {
  filter: none;
}
#faq-content .accordion-body {
  line-height: 1.7;
  color: #333;
  background: #fff;
  font-size: 0.98rem;
}
#faq-content .cta-box {
  margin-top: 56px;
  padding: 28px;
  background: hsl(228, 19%, 21%);
  border-radius: 8px;
  text-align: center;
}
#faq-content .cta-box h2 {
  color: #f7f6f3;
  margin-top: 0;
}
#faq-content .cta-box p {
  color: #dfe1e6;
  margin-bottom: 18px;
}
#faq-content .cta-box a.btn {
  background: hsl(214, 43%, 58%);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 10px 26px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
#faq-content .cta-box a.btn:hover {
  background: hsl(214, 43%, 48%);
  color: #fff;
}
#faq-content a {
  color: hsl(214, 43%, 40%);
}
#faq-content .lead-note {
  font-size: 0.92rem;
  color: #5c5c5c;
  border-left: 3px solid hsl(214, 43%, 58%);
  padding-left: 14px;
  margin: 24px 0;
}



  

  .thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    font-family: 'Open Sans', sans-serif;
    padding: 2rem 1rem;
  }

  .thankyou-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 3rem 2.5rem;
    max-width: 620px;
    width: 100%;
    text-align: center;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.25);
    animation: fadeInUp 0.7s ease-out;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .success-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-accent) 0%, var(--color-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(90, 128, 178, 0.15);
    animation: popIn 0.6s ease-out 0.2s both;
  }

  @keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
  }

  .success-icon-wrapper svg {
    width: 52px;
    height: 52px;
    stroke: #ffffff;
  }

  .thankyou-heading {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.85rem;
    margin-bottom: 1rem;
  }

  .thankyou-text {
    color: var(--color-primary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
  }

  .thankyou-note {
    background-color: hsl(214, 43%, 96%);
    border-left: 4px solid var(--color-accent);
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    text-align: left;
    margin: 1.75rem 0;
  }

  .thankyou-note p {
    margin-bottom: 0.4rem;
    color: var(--color-secondary);
    font-size: 0.97rem;
  }

  .thankyou-note p:last-child {
    margin-bottom: 0;
  }

  .thankyou-note i {
    color: var(--color-accent);
    margin-right: 0.5rem;
    width: 1.2rem;
    text-align: center;
  }

  .btn-home {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    padding: 0.75rem 2.25rem;
    border-radius: 0.6rem;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .btn-home:hover,
  .btn-home:focus {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }

  @media (max-width: 576px) {
    .thankyou-card {
      padding: 2.25rem 1.5rem;
    }

    .thankyou-heading {
      font-size: 1.5rem;
    }

    .success-icon-wrapper {
      width: 80px;
      height: 80px;
    }

    .success-icon-wrapper svg {
      width: 42px;
      height: 42px;
    }
  }
