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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 23px;
  line-height: 1.5;
  color: #1A202C;
  background: #F7FAFC;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.main {
  flex: 1;
  margin-left: 280px;
  padding: 32px 24px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: 90px;
  font-weight: 700;
}

h2 {
  font-size: 64px;
}

h3 {
  font-size: 45px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 23px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 16px;
}

a {
  color: #1BDADA;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #BE1EBE;
}

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

.nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  background: #fff;
  padding: 32px 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 8px rgba(0,0,0,0.05);
}

.logo {
  margin-bottom: 48px;
  font-size: 32px;
  font-weight: 700;
  color: #1A202C;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.nav-item {
  width: 100%;
}

.nav-link {
  display: block;
  padding: 16px;
  color: #4A5568;
  border-radius: 4px;
  transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(27, 218, 218, 0.1);
  color: #1BDADA;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #1A202C;
  cursor: pointer;
  position: fixed;
  right: 24px;
  top: 24px;
  z-index: 1001;
}

.top {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  margin-bottom: 64px;
  background: linear-gradient(135deg, rgba(27, 218, 218, 0.15), rgba(190, 30, 190, 0.15));
  overflow: hidden;
}

.top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231BDADA' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 0;
}

.top-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.top h1 {
  color: #1A202C;
  margin-bottom: 24px;
}

.top p {
  font-size: 32px;
  color: #4A5568;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  background: #1BDADA;
  color: #fff;
  border-radius: 4px;
  font-size: 23px;
  font-weight: 500;
  border: 2px solid #1BDADA;
  transition: all 0.2s;
  cursor: pointer;
}

.btn:hover {
  background: transparent;
  color: #1BDADA;
}

.btn-secondary {
  background: #BE1EBE;
  border-color: #BE1EBE;
}

.btn-secondary:hover {
  background: transparent;
  color: #BE1EBE;
}

.block {
  padding: 64px 0;
  margin-bottom: 48px;
}

.block-title {
  text-align: center;
  margin-bottom: 48px;
}

.area {
  position: relative;
  padding: 64px 24px;
  margin-bottom: 48px;
  background: linear-gradient(135deg, rgba(27, 218, 218, 0.08), rgba(190, 30, 190, 0.08));
  border-radius: 8px;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.box {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  transition: all 0.3s;
  cursor: pointer;
}

.box h3 {
  color: #1BDADA;
  margin-bottom: 16px;
}

.box p {
  color: #4A5568;
  font-size: 16px;
  line-height: 1.6;
}

.box.expanded {
  flex-basis: 100%;
  background: linear-gradient(135deg, rgba(27, 218, 218, 0.05), rgba(190, 30, 190, 0.05));
}

.box.expanded .box-extra {
  display: block;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #E2E8F0;
}

.box-extra {
  display: none;
}

.item {
  background: #fff;
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 4px;
  border-left: 4px solid #1BDADA;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.item h4 {
  color: #1A202C;
  margin-bottom: 8px;
}

.item p {
  color: #4A5568;
  font-size: 16px;
}

.cols {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 48px 0;
}

.col-2 {
  flex: 1;
  min-width: calc(50% - 12px);
}

.col-3 {
  flex: 1;
  min-width: calc(33.333% - 16px);
}

.col-4 {
  flex: 1;
  min-width: calc(25% - 18px);
}

.piece {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

.piece:hover {
  transform: translateY(-4px);
}

.piece img {
  margin: 0 auto 24px;
  border-radius: 8px;
}

.piece h4 {
  color: #1A202C;
  margin-bottom: 16px;
}

.testimonial-box {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  border-top: 4px solid #BE1EBE;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-box p {
  font-style: italic;
  color: #4A5568;
  margin-bottom: 16px;
  font-size: 16px;
}

.testimonial-box .author {
  font-weight: 600;
  color: #1A202C;
  font-style: normal;
}

.form-chunk {
  background: #fff;
  padding: 48px;
  border-radius: 8px;
  max-width: 600px;
  margin: 48px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #4A5568;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #1BDADA;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.cta-area {
  background: linear-gradient(135deg, #1BDADA, #BE1EBE);
  padding: 64px 24px;
  text-align: center;
  border-radius: 8px;
  margin: 64px 0;
}

.cta-area h2 {
  color: #fff;
  margin-bottom: 24px;
}

.cta-area p {
  color: #fff;
  font-size: 23px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-area .btn {
  background: #fff;
  color: #1BDADA;
  border-color: #fff;
}

.cta-area .btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

footer.footer-contact {
  background: #fff;
  padding: 64px 24px 32px;
  border-top: 1px solid #E2E8F0;
  margin-left: 280px;
}

footer.footer-contact .footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 32px;
}

footer.footer-contact .contact-info,
footer.footer-contact .footer-links,
footer.footer-contact .hours-info {
  flex: 1;
  min-width: 250px;
}

footer.footer-contact .contact-info h4,
footer.footer-contact .footer-links h4,
footer.footer-contact .hours-info h4 {
  font-size: 23px;
  margin-bottom: 16px;
  color: #1A202C;
  font-weight: 600;
}

footer.footer-contact .contact-info p {
  color: #4A5568;
  margin-bottom: 8px;
  font-size: 16px;
}

footer.footer-contact .footer-links a {
  display: block;
  color: #4A5568;
  margin-bottom: 8px;
  font-size: 16px;
  transition: color 0.2s;
}

footer.footer-contact .footer-links a:hover {
  color: #1BDADA;
}

footer.footer-contact .hours-info p {
  color: #4A5568;
  margin-bottom: 8px;
  font-size: 16px;
}

footer.footer-contact .copyright {
  text-align: center;
  color: #718096;
  font-size: 11px;
  padding-top: 32px;
  border-top: 1px solid #E2E8F0;
}

.faq-box {
  background: #fff;
  margin-bottom: 16px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 23px;
  font-weight: 500;
  color: #1A202C;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #F7FAFC;
}

.faq-question::after {
  content: '+';
  font-size: 32px;
  color: #1BDADA;
  transition: transform 0.2s;
}

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

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.active {
  padding: 0 24px 24px;
  max-height: 500px;
}

.faq-answer p {
  color: #4A5568;
  font-size: 16px;
  line-height: 1.6;
}

.gallery-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 48px 0;
}

.gallery-item {
  flex: 1;
  min-width: calc(33.333% - 12px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.stat-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 48px 0;
  text-align: center;
}

.stat-item {
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-size: 64px;
  font-weight: 700;
  color: #1BDADA;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #4A5568;
}

.breadcrumb {
  padding: 16px 0;
  margin-bottom: 24px;
  font-size: 16px;
}

.breadcrumb a {
  color: #4A5568;
}

.breadcrumb a:hover {
  color: #1BDADA;
}

.breadcrumb span {
  color: #718096;
  margin: 0 8px;
}

@media screen and (max-width: 1024px) {
  .nav {
    width: 250px;
  }

  .main {
    margin-left: 250px;
  }

  footer.footer-contact {
    margin-left: 250px;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 45px;
  }

  h3 {
    font-size: 32px;
  }

  .top {
    min-height: 500px;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav {
    transform: translateX(-100%);
    transition: transform 0.3s;
  }

  .nav.active {
    transform: translateX(0);
  }

  .main {
    margin-left: 0;
    padding: 24px 16px;
  }

  footer.footer-contact {
    margin-left: 0;
    padding: 48px 16px 24px;
  }

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 23px;
  }

  h4 {
    font-size: 23px;
  }

  .top {
    min-height: 400px;
    padding: 48px 16px;
  }

  .top p {
    font-size: 23px;
  }

  .btn {
    font-size: 16px;
    padding: 16px 24px;
  }

  .block {
    padding: 48px 0;
  }

  .area {
    padding: 48px 16px;
  }

  .box {
    min-width: 100%;
  }

  .col-2,
  .col-3,
  .col-4 {
    min-width: 100%;
  }

  .gallery-item {
    min-width: calc(50% - 8px);
  }

  .form-chunk {
    padding: 32px 24px;
  }

  .cta-area {
    padding: 48px 16px;
  }

  footer.footer-contact .footer-grid {
    gap: 32px;
  }

  footer.footer-contact .contact-info,
  footer.footer-contact .footer-links,
  footer.footer-contact .hours-info {
    min-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 23px;
  }

  .top p {
    font-size: 16px;
  }

  .gallery-item {
    min-width: 100%;
  }

  .stat-wrap {
    gap: 24px;
  }

  .stat-number {
    font-size: 45px;
  }

  .faq-question {
    font-size: 16px;
  }
}
