* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Noto Sans KR', sans-serif; background: #f0f4f8; }

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1; 
}

.site-header {
  background-color: #0d1b2a;
  color: #fff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  width: 50px;
  height: 40px;
  margin-right: 0.6rem;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: #00aaff;
}

.nav__list {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav__list li {
  position: relative;
}

.nav__list a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  position: relative;
}

.nav__list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #00aaff;
  transition: width 0.3s ease;
}

.nav__list a:hover::after {
  width: 100%;
}

.btn-contact {
  background: linear-gradient(45deg, #0077cc, #00aaff);
  padding: 0.6rem 1.6rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  background: linear-gradient(45deg, #00aaff, #33ccff);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle .bar {
  height: 4px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.open .bar:nth-child(1) {
  transform: rotate(40deg) translateY(12px);
}

.nav-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .bar:nth-child(3) {
  transform: rotate(-40deg) translateY(-11px);
}

@media (max-width: 900px) {

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #0d1b2a;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav.active {
    max-height: 600px;
    padding: 1rem 0;
  }

  .nav__list {
    flex-direction: column;
    width: 100%;
    align-items: center
  }

  .nav__list li a {
    padding: 1.2rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .btn-contact {
    display: block;
    width: 100%;
    margin: 0;
    border-radius: 0;
    text-align: center;
    padding: 1.2rem 2rem;
    box-shadow: none;
    font-size: 1rem;
    font-weight: 600;
  }

  .nav-toggle {
    display: flex;
  }
}

.site-header.scrolled {
  background-color: #0b1624;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  transition: all 0.4s ease;
}

.footer {
  flex-shrink: 0;
  background: linear-gradient(180deg, #0e2a54 0%, #051425 100%);
  color: #e8f1ff;
  padding: 60px 20px 30px;
  font-family: "Pretendard", sans-serif;
}

.footer__container {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
}

.footer__center {
  justify-self: center;
  text-align: center;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 700;
  color: #e8f1ff;
  text-decoration: none;
}

.footer__logo img {
  width: 50px;
}

.footer__description {
  margin-top: 12px;
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.footer__menu h4,
.footer__info h4 {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer__menu ul,
.footer__info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__menu ul li,
.footer__info ul li {
  margin-bottom: 10px;
}

.footer__menu ul li a,
.footer__info a {
  color: #9ecaff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer__menu ul li a:hover,
.footer__info a:hover {
  color: #ffffff;
}

.footer__legal {
  display: flex;
  gap: 20px;
  margin-top: 18px;
  font-size: 14px;
}

.footer__bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__logo {
    justify-content: center;
  }

  .footer__legal {
    justify-content: center;
  }

  .footer__center {
    justify-self: center;
  }
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: #fff;
  background: url("../images/hero1.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.6);
  z-index: 1;
}

.hero-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 2;
  flex-wrap: wrap;
  gap: 2rem;
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #00aaff;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: #f5f5f5;
  animation: fadeInUp 1.2s ease forwards;
}

.btn-hero {
  display: inline-block;
  background: linear-gradient(45deg, #0077cc, #00aaff);
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  animation: fadeInUp 1.4s ease forwards;
}

.btn-hero:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.45);
  background: linear-gradient(45deg, #00aaff, #33ccff);
}

.hero-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: fadeIn 1.6s ease forwards;
}

@media (max-width: 900px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-hero {
    width: 100%;
    padding: 1rem;
  }

  .hero-image img {
    max-width: 90%;
    margin-bottom: 1.5rem;
  }
}

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

@keyframes fadeIn {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

.about-business {
  padding: 6rem 2rem;
  background-color: #0b1624;
  color: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-text {
  max-width: 600px;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00aaff;
  margin-bottom: 1.5rem;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #f5f5f5;
}

.btn-about {
  display: inline-block;
  background: linear-gradient(45deg, #0077cc, #00aaff);
  padding: 0.7rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.btn-about:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  background: linear-gradient(45deg, #00aaff, #33ccff);
}

.about-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

@media (max-width: 900px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-description {
    font-size: 1rem;
  }

  .about-image img {
    max-width: 90%;
    margin-bottom: 1.5rem;
  }

  .btn-about {
    width: 100%;
    padding: 1rem;
  }
}

.advantages {
  background-color: #0d1b2a;
  color: #fff;
  padding: 6rem 2rem;
}


.advantages > .container {
  display: block;
}

.advantages-title {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: #00aaff;
  text-align: center;
  margin-bottom: 4rem;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.advantage-item {
  background-color: #0b1624;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.advantage-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}


.advantage-item img {
  width: 70px;
  margin-bottom: 1.5rem;
}

.advantage-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #00aaff;
}

.advantage-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #f5f5f5;
}

@media (max-width: 1100px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 700px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.intermediate {
  background: linear-gradient(135deg, #0d1b2a, #0b1624, #0f2235);
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
border-top: 2px solid;
border-image: linear-gradient(to right, #00aaff, #33ccff) 1;
border-bottom: 2px solid;
border-image: linear-gradient(to right, #00aaff, #33ccff) 1;
  box-shadow: inset 0 3px 6px rgba(0,0,0,0.3), inset 0 -3px 6px rgba(0,0,0,0.3);
}


.intermediate-container {
    flex-direction: column   
}

.intermediate-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00aaff;
  margin-bottom: 1.5rem;
}

.intermediate-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  color: #f5f5f5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-intermediate {
  display: inline-block;
  background: linear-gradient(45deg, #0077cc, #00aaff);
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  
}

.btn-intermediate:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.45);
  background: linear-gradient(45deg, #00aaff, #33ccff);
}

@media (max-width: 900px) {
  .intermediate-title {
    font-size: 2rem;
  }

  .intermediate-subtitle {
    font-size: 1rem;
  }

  .btn-intermediate {
    width: 100%;
    padding: 1rem;
  }
}

.contact-container {
    flex-direction: column;
}

.contact {
  background: linear-gradient(135deg, #0b1624, #0d1b2a, #0f2235);
  color: #fff;
  padding: 6rem 2rem;
  position: relative;
  text-align: center;
  border-top: 3px solid #00aaff;
  border-bottom: 3px solid #00aaff;
}

.contact-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #00aaff;
  margin-bottom: 1.5rem;
}

.contact-subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #f5f5f5;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.contact-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  background-color: #0b1624;
  padding: 1.8rem 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 28px rgba(0,0,0,0.5);
}

.contact-icon {
  font-size: 2rem;
  color: #00aaff;
}

.contact-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #00aaff;
}

.contact-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #f5f5f5;
}

.contact-text a {
  color: #00aaff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-text a:hover {
  text-decoration: underline;
}

.btn-contact-section {
  display: inline-block;
  background: linear-gradient(45deg, #0077cc, #00aaff);
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-contact-section:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.45);
  background: linear-gradient(45deg, #00aaff, #33ccff);
}

.contact-decor {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform: translateX(-50%);
}

.decor-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 170, 255, 0.15);
}

.circle-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 15%;
}

.circle-2 {
  width: 80px;
  height: 80px;
  bottom: 15%;
  right: 20%;
}

.circle-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 70%;
}

@media (max-width: 900px) {
  .contact-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-icon {
    margin-bottom: 0.5rem;
  }

  .btn-contact-section {
    width: 100%;
    padding: 1rem;
  }
}

.policy-main-wide {
  width: 100%;
  padding: 4rem 8%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  color: #fff;
  background: linear-gradient(135deg, #0b1624, #0d1b2a, #0f2235);
  box-sizing: border-box;
}

.policy-main-wide h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #00aaff;
}

.policy-main-wide h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #33ccff;
  margin-top: 2rem;
}

.policy-main-wide p {
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 1400px;
}

.policy-main-wide strong {
  color: #00ffff;
}

.contact-header {
  width: 100%;
  padding: 6rem 6%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: linear-gradient(135deg, #0b1624, #0d1b2a, #0f2235);
  color: #fff;
  box-sizing: border-box;
  text-align: center;
}

.contact-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #00aaff;
}

.contact-header p {
  font-size: 1.3rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  color: #d0e7ff;
}

.contact-two-columns {
  display: flex;
  gap: 4rem;
  width: 100%;
  padding: 4rem 6%;
  box-sizing: border-box;
  background: linear-gradient(135deg, #0d1b2a, #0f2235);
  color: #fff;
  flex-wrap: wrap;
}

.contact-two-columns > div {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-two-columns h2 {
  font-size: 2rem;
  color: #33ccff;
}

.contact-two-columns p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #d0e7ff;
}

.contact-form-column form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form-column input,
.contact-form-column textarea {
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1.1rem;
  background-color: rgba(255,255,255,0.05);
  color: #fff;
}

.contact-form-column input::placeholder,
.contact-form-column textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

.btn-submit {
  padding: 0.9rem 2rem;
  background: linear-gradient(45deg, #00aaff, #33ccff);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,170,255,0.4);
}

.form-message {
  font-size: 1rem;
  color: #ff6666;
}

@media (max-width: 900px) {
  .contact-two-columns {
    flex-direction: column;
    gap: 3rem;
  }
}

.contact-info-column a{
    color: #8aacff;
}

.contact-map-section {
  width: 100%;
  padding: 5rem 6%;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  background: linear-gradient(135deg, #0f1c2a, #121f33, #14223d);
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}

.contact-map-section h2 {
  font-size: 2.2rem;
  color: #00aaff;
  font-weight: 700;
}

.contact-map-section p {
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  color: #d0e7ff;
}

.contact-map-section iframe {
  width: 100%;
  border-radius: 12px;
  border: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  margin-top: 1.5rem;
}

.faq-main {
  width: 100%;
  padding: 4rem 6%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  background: linear-gradient(135deg, #0b1624, #0d1b2a, #0f2235);
  color: #fff;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

.faq-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #00aaff;
  text-align: center;
}

.faq-header p {
  font-size: 1.3rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  color: #d0e7ff;
  text-align: center;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
  background-color: rgba(255,255,255,0.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.faq-question {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #00aaff;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-question:hover {
  background-color: rgba(0,170,255,0.1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1rem 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #d0e7ff;
}

.faq-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: center;
}

.faq-contact h2 {
  font-size: 2rem;
  color: #33ccff;
}

.faq-contact a {
  color: #00ffff;
  text-decoration: none;
}

.faq-contact a:hover {
  text-decoration: underline;
}

.reviews-main {
  width: 100%;
  padding: 4rem 6%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  background: linear-gradient(135deg, #0b1624, #0d1b2a, #0f2235);
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  box-sizing: border-box;
}

.reviews-header {
  text-align: center;
}

.reviews-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #00aaff;
}

.reviews-header p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #d0e7ff;
  max-width: 900px;
  margin: 0.5rem auto 0;
}

.reviews-gallery h2 {
  text-align: center;
  font-size: 2rem;
  color: #33ccff;
  margin-bottom: 1.5rem;
}

.gallery-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
}

.gallery-slider img {
  width: 300px;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
  filter: sepia(0.1) hue-rotate(200deg) brightness(0.9);
}

.gallery-slider img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.5);
  filter: none; 
}

.reviews-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.review-card {
  background-color: rgba(255,255,255,0.05);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  overflow: hidden;
  width: 300px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.5);
}

.review-avatar img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.review-content {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.review-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #33ccff;
}

.review-stars {
  font-size: 1.1rem;
  color: #ffd700;
}

.review-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d0e7ff;
}

.reviews-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: center;
}

.reviews-contact h2 {
  font-size: 2rem;
  color: #33ccff;
}

.reviews-contact a {
  color: #00ffff;
  text-decoration: none;
}

.reviews-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .reviews-list {
    flex-direction: column;
    align-items: center;
  }
  .gallery-slider {
    justify-content: center;
  }
}

.reviews-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem; 
  flex-wrap: wrap;
  margin-bottom: 2rem;
  text-align: center;
}

.reviews-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00aaff;
}

.reviews-intro p {
  font-size: 1.3rem;
  color: #d0e7ff;
}

.pricing-main {
  width: 100%;
  padding: 4rem 6%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  background: linear-gradient(135deg, #0b1624, #0d1b2a, #0f2235);
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  box-sizing: border-box;
}

.pricing-header {
  text-align: center;
}

.pricing-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #00aaff;
}

.pricing-header p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #d0e7ff;
  max-width: 900px;
  margin: 0.5rem auto 0;
}

.pricing-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-card {
  background-color: rgba(255,255,255,0.05);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  width: 300px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card.featured {
  background: linear-gradient(135deg, #00aaff, #33ccff);
  color: #0b1624;
  transform: scale(1.05);
}

.pricing-card h2 {
  font-size: 1.8rem;
  font-weight: 700;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing-card ul li::before {
  content: "✔";
  color: #00ffff;
  margin-right: 0.5rem;
}

.pricing-card button {
  margin-top: auto;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(45deg, #00aaff, #33ccff);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.pricing-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,170,255,0.5);
}

.pricing-info {
  text-align: center;
}

.pricing-info h2 {
  font-size: 2rem;
  color: #33ccff;
}

.pricing-info p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0.5rem auto 0;
  line-height: 1.7;
}

.pricing-gallery {
  background: linear-gradient(135deg, #0d1b2a, #11233d);
  padding: 4rem 0;
  border-radius: 16px;
}

.pricing-gallery h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #00aaff;
  margin-bottom: 2rem;
}

.gallery-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}

.gallery-slider::-webkit-scrollbar {
  height: 8px;
}

.gallery-slider::-webkit-scrollbar-thumb {
  background: #00aaff88;
  border-radius: 4px;
}

.gallery-slider .gallery-item {
  flex: 0 0 auto;
  width: 350px;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-slider .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.8);
  transition: transform 0.3s, filter 0.3s, box-shadow 0.3s;
}

.gallery-slider .gallery-item:hover img {
  filter: none;
  transform: scale(1.05);
}

.gallery-slider .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

.pricing-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: center;
}

.pricing-contact h2 {
  font-size: 2rem;
  color: #33ccff;
}

.pricing-contact a {
  color: #00ffff;
  text-decoration: none;
}

.pricing-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  .gallery-slider {
    justify-content: center;
    gap: 1rem;
  }
  .gallery-slider .gallery-item {
    width: 80%;
    height: 400px;
  }
}

.gallery-main {
  width: 100%;
  padding: 4rem 6%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  background: linear-gradient(135deg, #0b1624, #0d1b2a, #0f2235);
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  box-sizing: border-box;
}

.gallery-header {
  text-align: center;
}

.gallery-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #00aaff;
}

.gallery-header p {
  font-size: 1.3rem;
  color: #d0e7ff;
  max-width: 900px;
  margin: 0.5rem auto 0;
  line-height: 1.8;
}

.gallery-slider-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #33ccff;
  margin-bottom: 2rem;
}

.gallery-slider-section {
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}

.gallery-slider {
  display: flex;
  gap: 1.5rem;
}

.gallery-slider::-webkit-scrollbar {
  height: 8px;
}

.gallery-slider::-webkit-scrollbar-thumb {
  background: #00aaff88;
  border-radius: 4px;
}

.gallery-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-item img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.5);
}

.gallery-label {
  margin-top: 1.5rem;
    margin-bottom: 1em;
  font-size: 1rem;
  color: #00ffff;
  font-weight: 600;
  text-align: center;
}

.gallery-thumbnails h2 {
  text-align: center;
  font-size: 2rem;
  color: #33ccff;
  margin-bottom: 1rem;
}

.thumb-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.gallery-info {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-info h2 {
  font-size: 2.2rem;
  color: #33ccff;
  margin-bottom: 1rem;
}

.gallery-info p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
  color: #d0e7ff;
}

.gallery-themed h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #33ccff;
  margin-bottom: 1.5rem;
}

.themed-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}

.themed-slider::-webkit-scrollbar {
  height: 8px;
}

.themed-slider::-webkit-scrollbar-thumb {
  background: #00aaff88;
  border-radius: 4px;
}

.themed-slider .gallery-item {
  width: 350px;
  height: 450px;
}

.gallery-reviews {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.gallery-reviews h2 {
  font-size: 2rem;
  color: #33ccff;
  text-align: center;
  margin-bottom: 2rem;
}

.review {
  display: flex;
  align-items: flex-start;
  background: rgba(255,255,255,0.05);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  gap: 1rem;
}

.review-avatar {
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.review-text p {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: #d0e7ff;
}

.review-text span {
  font-weight: 600;
  color: #00aaff;
}

@media (max-width: 700px) {
  .review {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .review-avatar {
    width: 80px;
    height: 80px;
  }
}

.gallery-contact {
  text-align: center;
}

.gallery-contact h2 {
  font-size: 2rem;
  color: #33ccff;
  margin-bottom: 1rem;
}

.gallery-contact p {
  margin: 0.3rem 0;
  font-size: 1.1rem;
}

.gallery-contact a {
  color: #00ffff;
  text-decoration: none;
}

.gallery-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .gallery-slider, .themed-slider {
    gap: 1rem;
  }
  .gallery-item, .themed-slider .gallery-item {
    width: 80%;
    height: 400px;
  }
  .thumb {
    width: 60px;
    height: 60px;
  }
  .gallery-header h1 {
    font-size: 2.5rem;
  }
  .gallery-slider-section h2, .gallery-thumbnails h2, .gallery-themed h2, .gallery-info h2, .gallery-reviews h2, .gallery-contact h2 {
    font-size: 1.8rem;
  }
}

.review-avatar-gal {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00aaff; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.4); 
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.review-avatar-gal:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6); 
  border-color: #33ccff; 
}

.services-main {
  width: 100%;
  padding: 4rem 6%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  background: linear-gradient(135deg, #0b1624, #0d1b2a, #0f2235);
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  box-sizing: border-box;
}

.services-header {
  text-align: center;
}

.services-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #00aaff;
}

.services-header p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #d0e7ff;
  max-width: 900px;
  margin: 0.5rem auto 0;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.service-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  align-items: start;
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(0,170,255,0.05));
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.45);
  transition: all 0.4s ease;
  width: 100%;
}

.service-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 14px 40px rgba(0,0,0,0.6);
  background: linear-gradient(145deg, rgba(0,170,255,0.1), rgba(51,204,255,0.1));
}

.service-item img {
  width: 35%;
  height: 100px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-text {
  display: flex;
    flex-direction: row;
    gap: 0.6rem;
    color: #d0e7ff;
    justify-content: space-around;
    align-items: center;
}

.service-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00aaff;
}

.service-text ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.service-text ul li::before {
  content: "✔";
  color: #00ffff;
  margin-right: 0.5rem;
}

.service-text p {
  font-size: 1rem;
  margin: 0.2rem 0;
  line-height: 1.5;
  display: flex;
  gap: 0.5rem;
  color: #c0e7ff;
}

.service-text p strong {
  color: #00ffff;
  min-width: 90px;
}

.service-item.featured {
  background: linear-gradient(135deg, #00aaff, #33ccff);
  color: #0b1624;
  transform: scale(1.02);
}

.services-info {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.services-info h2 {
  font-size: 2rem;
  color: #33ccff;
}

.services-info p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-top: 0.5rem;
}

.services-gallery h2 {
  text-align: center;
  font-size: 2rem;
  color: #33ccff;
  margin-bottom: 1.5rem;
}

.gallery-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
}

.gallery-item img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.5);
}

.services-reviews h2 {
  text-align: center;
  font-size: 2rem;
  color: #33ccff;
  margin-bottom: 1rem;
}

.review {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.05);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.review-avatar-gal {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.review-text p {
  margin: 0;
  font-size: 1rem;
  color: #d0e7ff;
}

.review-text span {
  font-size: 0.9rem;
  color: #00ffff;
  margin-top: 0.2rem;
}

.services-contact {
  text-align: center;
  background: linear-gradient(135deg, #0b1624, #0d1b2a, #0f2235);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.services-contact h2 {
  font-size: 2rem;
  color: #33ccff;
  margin-bottom: 1rem;
}

.services-contact p {
  font-size: 1.1rem;
  margin: 0.3rem 0;
  color: #d0e7ff;
}

.services-contact a {
  color: #00ffff;
  text-decoration: none;
}

.services-contact a:hover {
  text-decoration: underline;
}

.services-contact button {
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(45deg, #00aaff, #33ccff);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.services-contact button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,170,255,0.5);
}

@media (max-width: 1000px) {
  .service-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .service-item img {
    width: 80%;
    height: 180px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .gallery-item img {
    width: 80%;
    height: auto;
    margin: 0 auto;
  }
  .services-reviews {
    gap: 1rem;
  }
}

.about-main {
  background: linear-gradient(135deg, #0b1d3a, #0f2b52);
  color: #fff;
  width: 100%;
}

.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 10%;
  gap: 60px;
}

.hero-inner {
  max-width: 600px;
}

.about-hero h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.about-hero p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 35px;
}

.hero-cta {
  display: flex;
  gap: 20px;
}

.btn-primary, .btn-secondary, .btn-ghost {
  padding: 15px 45px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary {
  background: #ffcc00;
  color: #000;
}

.btn-primary:hover {
  background: #ffd84d;
  transform: translateY(-4px);
}

.btn-ghost {
  border: 2px solid #fff;
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.18);
}

.hero-photo img {
  width: 520px;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.about-story {
  padding: 120px 10%;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story-text h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
}

.story-text p {
  font-size: 19px;
  margin-bottom: 15px;
  opacity: .9;
}

.story-photos {
  display: grid;
  gap: 20px;
}

.story-photos img {
  width: 100%;
  border-radius: 18px;
  height: 250px;
  object-fit: cover;
  box-shadow: 0 15px 30px rgba(0,0,0,.55);
}

.about-advantages {
  padding: 120px 10%;
  text-align: center;
}

.about-advantages h2 {
  font-size: 46px;
  margin-bottom: 50px;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 40px;
}

.adv-item {
  background: rgba(255,255,255,0.08);
  padding: 40px 25px;
  border-radius: 22px;
  transition: .3s;
  backdrop-filter: blur(5px);
}

.adv-item:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.18);
}

.adv-icon {
  font-size: 48px;
  margin-bottom: 18px;
}

.about-team {
  padding: 120px 10%;
  text-align: center;
}

.about-team h2 {
  font-size: 46px;
  margin-bottom: 15px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 40px;
  margin-top: 50px;
}

.team-card {
  background: rgba(255,255,255,0.08);
  padding: 35px;
  border-radius: 22px;
  transition: .3s;
}

.team-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.15);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 100px;
  margin-bottom: 10px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0,0,0,0.5);
}

.team-card strong {
  display: block;
  margin: 8px 0;
}

.about-equipment {
  padding: 120px 10%;
}

.equip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.equip-left ul {
  list-style: none;
  margin-top: 15px;
}

.equip-left li {
  margin-bottom: 10px;
  font-size: 18px;
}

.equip-right img {
  width: 100%;
  border-radius: 20px;
  height: 340px;
  object-fit: cover;
  box-shadow: 0 15px 30px rgba(0,0,0,.6);
}

.about-beforeafter {
  text-align: center;
  padding: 120px 10%;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 40px;
  margin-top: 40px;
}

.ba-item img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,.5);
}

.about-map {
  padding: 120px 10%;
}

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.about-testimonials {
  padding: 120px 10%;
  text-align: center;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 40px;
  margin-top: 40px;
}

.testi {
  background: rgba(255,255,255,.1);
  padding: 35px;
  border-radius: 20px;
  font-size: 19px;
}

.about-cta {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(135deg, #1c416d, #0e1c36);
}

.about-cta h3 {
  font-size: 44px;
  margin-bottom: 25px;
}

.large {
  font-size: 22px;
  padding: 18px 60px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: .9s ease;
}

.reveal.inview {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .about-hero {
    flex-direction: column;
    text-align: center;
  }
  .story-grid,
  .equip-grid,
  .map-grid {
    grid-template-columns: 1fr;
  }
  .hero-photo img {
    width: 100%;
    height: auto;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(10, 20, 38, 0.95);
  color: #fff;
  padding: 20px 10%;
  display: none;
  backdrop-filter: blur(6px);
  border-top: 2px solid rgba(255,255,255,0.15);
  z-index: 99999;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.cookie-inner p {
  font-size: 16px;
  line-height: 1.5;
  max-width: 900px;
}

.cookie-btns {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cookie-accept {
  background: #ffcc00;
  color: #000;
  padding: 12px 28px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: .3s;
}

.cookie-accept:hover {
  background: #ffd84d;
  transform: translateY(-3px);
}

.cookie-more {
  color: #fff;
  text-decoration: underline;
  font-size: 15px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}
