@charset "UTF-8";
/* CSS for all medias, including print. */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #2C2C2C;
  background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0 0 1.5rem 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: #C41E3A;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  background: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}
button:focus {
  outline: 2px solid #FFCF00;
  outline-offset: 2px;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: 1px solid #CCCCCC;
  padding: 1rem;
  border-radius: 4px;
}
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #C41E3A;
  outline-offset: 2px;
  border-color: #C41E3A;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid #FFCF00;
  outline-offset: 2px;
}

h1, .h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 2rem;
  }
}

h2, .h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 1.5rem;
  }
}

h3, .h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #2C2C2C;
}
@media (max-width: 767px) {
  h3, .h3 {
    font-size: 1.25rem;
  }
}

h4, .h4 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #2C2C2C;
}

h5, .h5 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #2C2C2C;
}

h6, .h6 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #666666;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: #2C2C2C;
  margin-bottom: 1.5rem;
}
p:last-child {
  margin-bottom: 0;
}

.text-large {
  font-size: 1.125rem;
  line-height: 1.8;
}

.text-small {
  font-size: 0.875rem;
  line-height: 1.6;
}

a {
  color: #C41E3A;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: rgb(151.7699115044, 23.2300884956, 44.9115044248);
  text-decoration: underline;
}
a:focus-visible {
  outline: 2px solid #FFCF00;
  outline-offset: 2px;
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

ul.styled-list {
  list-style: none;
  padding-left: 0;
}
ul.styled-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
ul.styled-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #C41E3A;
  font-weight: 700;
}

ol.styled-list {
  list-style: none;
  counter-reset: styled-counter;
  padding-left: 0;
}
ol.styled-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  counter-increment: styled-counter;
}
ol.styled-list li::before {
  content: counter(styled-counter) ".";
  position: absolute;
  left: 0;
  color: #C41E3A;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 767px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.section {
  padding: 4rem 0;
}
@media (max-width: 767px) {
  .section {
    padding: 3rem 0;
  }
}

.section__title {
  text-align: center;
  margin-bottom: 3rem;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .section__title {
    margin-bottom: 2rem;
  }
}

.hero {
  padding: 4rem 0;
  background-color: #F5F5F5;
}
@media (max-width: 767px) {
  .hero {
    padding: 3rem 0;
  }
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 767px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.hero__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  animation-duration: 1s;
  animation-name: slidein-1;
}
@keyframes slidein-1 {
  from {
    margin-left: -100%;
    width: 100%;
  }
  to {
    margin-left: 0%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .hero__image {
    order: -1;
  }
}

.hero__text {
  padding: 1.5rem;
  animation-duration: 1s;
  animation-name: slidein-2;
}
@keyframes slidein-2 {
  from {
    margin-left: 100%;
    width: 100%;
  }
  to {
    margin-left: 0%;
    width: 100%;
  }
}

.hero__title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 2rem;
  }
}

.hero__description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 2rem;
}

.hero__buttons {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .hero__buttons {
    flex-direction: column;
  }
}

.features {
  padding: 4rem 0;
}
@media (max-width: 767px) {
  .features {
    padding: 3rem 0;
  }
}
.features {
  animation-duration: 1s;
  animation-name: slidein-3;
}
@keyframes slidein-3 {
  from {
    margin-top: 100%;
  }
  to {
    margin-top: 0%;
  }
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
@media (max-width: 767px) {
  .features__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.feature {
  text-align: center;
  padding: 2rem;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1A1A1A;
}

.feature__description {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
}

.cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1A1A1A 0%, rgb(51.5, 51.5, 51.5) 100%);
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 767px) {
  .cta {
    padding: 3rem 0;
  }
}

.cta__content {
  max-width: 700px;
  margin: 0 auto;
}

.cta__title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .cta__title {
    font-size: 1.5rem;
  }
}

.cta__description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:focus-visible {
  outline: 2px solid #FFCF00;
  outline-offset: 2px;
}

.btn--primary {
  background-color: #C41E3A;
  color: #FFFFFF;
  border-color: #C41E3A;
}
.btn--primary:hover {
  background-color: rgb(160.6159292035, 24.5840707965, 47.5292035398);
  border-color: rgb(160.6159292035, 24.5840707965, 47.5292035398);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.2);
}

.btn--secondary {
  background-color: transparent;
  color: #C41E3A;
  border-color: #C41E3A;
}
.btn--secondary:hover {
  background-color: #C41E3A;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn--large {
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
}

.btn--full {
  width: 100%;
  display: block;
}

.page-header {
  padding: 3rem 0;
  background-color: #F5F5F5;
  text-align: center;
  animation-duration: 1s;
  animation-name: slidein-4;
}
@keyframes slidein-4 {
  from {
    margin-left: 100%;
    width: 100%;
  }
  to {
    margin-left: 0%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .page-header {
    padding: 2rem 0;
  }
}

.page-header__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .page-header__title {
    font-size: 2rem;
  }
}

.page-header__description {
  font-size: 1.125rem;
  color: #666666;
  max-width: 700px;
  margin: 0 auto;
}

.pricing {
  padding: 4rem 0;
}
@media (max-width: 767px) {
  .pricing {
    padding: 3rem 0;
  }
}
.pricing {
  animation-duration: 2s;
  animation-name: slidein-5;
}
@keyframes slidein-5 {
  from {
    margin-top: 100%;
    width: 100%;
  }
  to {
    margin-top: 0%;
    width: 100%;
  }
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
@media (max-width: 767px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.pricing-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pricing-card--featured {
  border: 2px solid #C41E3A;
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.25);
}

.pricing-card--special {
  border: 2px solid #FFCF00;
}

.pricing-card__badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: #C41E3A;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
}
.pricing-card__badge.pricing-card__badge--green {
  background-color: #28A745;
}

.pricing-card__header {
  padding: 4rem;
  text-align: center;
  background-color: #F5F5F5;
}

.pricing-card__title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1A1A1A;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.pricing-card__amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #C41E3A;
}

.pricing-card__duration {
  font-size: 1rem;
  color: #666666;
}

.pricing-card__savings {
  margin-top: 1rem;
  color: #28A745;
  font-weight: 700;
}

.pricing-card__body {
  padding: 2rem;
  flex-grow: 1;
}

.pricing-card__description {
  margin-bottom: 1.5rem;
  color: #666666;
  line-height: 1.6;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card__feature {
  padding: 0.5rem 0;
  color: #2C2C2C;
}
.pricing-card__feature::before {
  content: "✓ ";
  color: #28A745;
  font-weight: 700;
  margin-right: 0.5rem;
}

.pricing-card__footer {
  padding: 2rem;
}

.info-section {
  padding: 3rem 0;
  background-color: #F7F3E9;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
@media (max-width: 767px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

.info-box {
  text-align: center;
  padding: 1.5rem;
}

.info-box__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1A1A1A;
}

.info-box__text {
  color: #666666;
  line-height: 1.6;
}

.about-hero {
  padding: 4rem 0;
  background-color: #F5F5F5;
}
@media (max-width: 767px) {
  .about-hero {
    padding: 3rem 0;
  }
}

.about-hero__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 767px) {
  .about-hero__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

.about-hero__image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  animation-duration: 1s;
  animation-name: slidein-6;
}
@keyframes slidein-6 {
  from {
    margin-left: -100%;
    width: 100%;
  }
  to {
    margin-left: 0%;
    width: 100%;
  }
}

.about-hero__text {
  animation-duration: 1s;
  animation-name: slidein-7;
}
@keyframes slidein-7 {
  from {
    margin-left: 100%;
    width: 100%;
  }
  to {
    margin-left: 0%;
    width: 100%;
  }
}

.about-hero__title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.about-hero__subtitle {
  font-size: 1.125rem;
  color: #C41E3A;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-hero__intro {
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.8;
}

.about-section {
  padding: 4rem 0;
  animation-duration: 1s;
  animation-name: slidin;
}
@keyframes slidin {
  from {
    margin-top: 100%;
  }
  to {
    margin-top: 0%;
  }
}
.about-section--alt {
  background-color: #F5F5F5;
}
@media (max-width: 767px) {
  .about-section {
    padding: 3rem 0;
  }
}

.construction-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.construction-overlay .construction-message {
  background: white;
  padding: 50px 70px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 500px;
}
.construction-overlay .construction-message h1 {
  color: #ff6b35;
  margin-bottom: 20px;
  font-size: 1.7em;
}
.construction-overlay .construction-message p {
  color: #333;
  font-size: 1.1em;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .construction-overlay {
    padding: 30px 25px;
    max-width: 100%;
  }
  .construction-overlay h1 {
    font-size: 1.5em;
    margin-bottom: 15px;
  }
  .construction-overlay p {
    font-size: 1em;
    line-height: 1.5;
  }
}

.header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E0E0E0;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1020;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .header__content {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.header__content-title {
  display: flex;
  justify-content: space-between;
  align-items: right;
  gap: 2rem;
}
@media (max-width: 767px) {
  .header__content-title {
    gap: 1.5rem;
  }
}

.header__title {
  flex-direction: column;
  gap: 0.25rem;
}
@media (max-width: 767px) {
  .header__title {
    text-align: center;
  }
}

.header__logo {
  display: flex;
}
@media (max-width: 767px) {
  .header__logo {
    justify-content: center;
  }
}

.header__logo-flag {
  width: auto;
  height: 60px;
  margin: 1px;
}

.header__title-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0;
}
@media (max-width: 767px) {
  .header__title-text {
    font-size: 1.25rem;
  }
}

.header__subtitle {
  font-size: 0.875rem;
  color: #666666;
  margin: 0;
  font-weight: 400;
}

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

.nav__list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .nav__list {
    gap: 1.5rem;
  }
}

.nav__item {
  margin: 0;
}

.nav__link {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #2C2C2C;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}
.nav__link:hover {
  color: #C41E3A;
  background-color: rgba(196, 30, 58, 0.1);
}
.nav__link:focus-visible {
  outline: 2px solid #FFCF00;
  outline-offset: 2px;
}
.nav__link--active {
  color: #C41E3A;
  background-color: rgba(196, 30, 58, 0.1);
  font-weight: 600;
}
@media (max-width: 767px) {
  .nav__link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

.footer {
  background-color: #1A1A1A;
  color: #FFFFFF;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
}

.footer__info,
.footer__contact,
.footer__hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.footer__heading {
  font-size: 1rem;
  font-weight: 600;
  color: #FFCF00;
  margin-bottom: 0.5rem;
}

.footer__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.footer__link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.footer__link:hover {
  color: #FFCF00;
  text-decoration: underline;
}

.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer__copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer__social {
  display: flex;
  gap: 1rem;
}
@media (max-width: 767px) {
  .footer__social {
    justify-content: center;
  }
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease-in-out;
}
.footer__social-link:hover {
  transform: scale(1.1);
}

.footer__social-icon {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.timeline {
  position: relative;
  padding-left: 3rem;
}
@media (max-width: 767px) {
  .timeline {
    padding-left: 2rem;
  }
}
.timeline::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #C41E3A;
}
@media (max-width: 767px) {
  .timeline::before {
    left: 1rem;
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}
.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item__marker {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: #C41E3A;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .timeline-item__marker {
    left: -2rem;
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

.timeline-item__content {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.timeline-item__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #1A1A1A;
}

.timeline-item__period {
  font-size: 0.875rem;
  color: #C41E3A;
  font-weight: 500;
  margin-bottom: 1rem;
}

.timeline-item__description {
  color: #666666;
  line-height: 1.6;
}

.experience {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.experience-item {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.experience-item__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .experience-item__header {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.experience-item__title {
  font-size: 1.25rem;
  color: #1A1A1A;
}

.experience-item__period {
  font-size: 0.875rem;
  color: #C41E3A;
  font-weight: 500;
}

.experience-item__description {
  color: #666666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.experience-item__achievements {
  list-style: none;
  padding: 0;
}
.experience-item__achievements li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #2C2C2C;
}
.experience-item__achievements li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #C41E3A;
  font-weight: 700;
}

.specialties {
  padding: 2rem 0;
}

.specialties__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
@media (max-width: 767px) {
  .specialties__grid {
    grid-template-columns: 1fr;
  }
}

.specialty-card {
  text-align: center;
  padding: 2rem;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}
.specialty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.specialty-card__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.specialty-card__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1A1A1A;
}

.specialty-card__description {
  color: #666666;
  line-height: 1.6;
}

.testimonials {
  padding: 4rem 0;
  background-color: #F5F5F5;
}
@media (max-width: 767px) {
  .testimonials {
    padding: 3rem 0;
  }
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
@media (max-width: 767px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

.testimonial {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #FFCF00;
}

.testimonial__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #2C2C2C;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial__text::before {
  content: '"';
  font-size: 2rem;
  color: #FFCF00;
  line-height: 0;
}

.testimonial__author {
  font-size: 0.875rem;
  color: #666666;
  font-weight: 500;
  font-style: normal;
}

@media print {
  @page {
    margin: 1cm 1cm 1cm 1.5cm;
  }
  html {
    background: none !important;
  }
  img {
    max-width: 10cm;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  nav,
  .footer__info,
  .btn {
    display: none !important;
    visibility: hidden;
  }
  .pricing-card,
  .timeline-item,
  .experience-item,
  .specialty-card,
  .about-section,
  .testimonials {
    page-break-inside: avoid;
  }
  .header {
    position: static;
    page-break-after: auto;
  }
}

/*# sourceMappingURL=style.css.map */
