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

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

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

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

.navbar {
  background: #ffffff;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 32px;
  font-weight: 700;
  color: #35C3D0;
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.nav-item {
  list-style: none;
}

.nav-link {
  font-size: 16px;
  color: #2D3748;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  padding: 8px 0;
  display: block;
}

.nav-link:hover {
  color: #35C3D0;
}

.top {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 48px 0;
  margin-bottom: 64px;
}

.top-content {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 48px;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-left: 48px;
}

.top-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 80%;
  object-fit: cover;
  z-index: 1;
}

h1 {
  font-size: 90px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #1A202C;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #2D3748;
}

h3 {
  font-size: 45px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #2D3748;
}

p {
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  background: #35C3D0;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn:hover {
  background: #2AA4AF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(53,195,208,0.3);
}

.btn-secondary {
  background: #A9285E;
}

.btn-secondary:hover {
  background: #891F4B;
}

.block {
  padding: 64px 0;
}

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

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

.box {
  background: #ffffff;
  padding: 32px;
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.2s;
}

.box:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.box h3 {
  color: #35C3D0;
  margin-bottom: 16px;
}

.box-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 16px;
}

.rows {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.fullbleed-area {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  padding: 64px 32px;
}

.fullbleed-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
}

.fullbleed-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  color: #ffffff;
}

.fullbleed-content h2 {
  color: #ffffff;
  font-size: 64px;
  margin-bottom: 24px;
}

.fullbleed-content p {
  font-size: 23px;
  margin-bottom: 32px;
}

.tag-filter-wrap {
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.tag-btn {
  padding: 8px 24px;
  background: #ffffff;
  border: 2px solid #35C3D0;
  color: #35C3D0;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.tag-btn:hover,
.tag-btn.active {
  background: #35C3D0;
  color: #ffffff;
}

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

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #E2E8F0;
  font-size: 16px;
  font-family: inherit;
  background: #ffffff;
  transition: all 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #35C3D0;
  box-shadow: 0 0 0 3px rgba(53,195,208,0.1);
}

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

.footer {
  background: #2D3748;
  color: #F7FAFC;
  padding: 48px 0 24px;
  margin-top: 64px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer-chunk {
  flex: 1 1 250px;
}

.footer-chunk h3 {
  color: #35C3D0;
  font-size: 32px;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #F7FAFC;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #35C3D0;
}

.footer-bottom {
  border-top: 1px solid #4A5568;
  padding-top: 24px;
  text-align: center;
  font-size: 16px;
  color: #A0AEC0;
}

.accent-color {
  color: #E7B36A;
}

.highlight {
  background: rgba(53,195,208,0.1);
  padding: 2px 8px;
}

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

@media screen and (max-width: 960px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 45px;
  }

  h3 {
    font-size: 32px;
  }

  body {
    font-size: 16px;
  }

  .top {
    min-height: 400px;
    padding: 32px 0;
    margin-bottom: 48px;
  }

  .top-content {
    padding: 32px;
    margin-left: 24px;
  }

  .top-image {
    width: 60%;
  }

  .block {
    padding: 48px 0;
  }

  .box {
    flex: 1 1 100%;
  }

  .item {
    flex: 1 1 calc(50% - 12px);
  }
}

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

  .mobile-menu-toggle {
    display: block;
    right: 16px;
  }

  .main-nav {
    display: none;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
  }

  body.menu-open .main-nav {
    display: flex;
    transform: translateX(0);
  }

  .nav-item {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #E2E8F0;
  }

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

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 23px;
  }

  .top {
    flex-direction: column;
    min-height: auto;
  }

  .top-content {
    padding: 24px;
    margin-left: 0;
    margin-bottom: 24px;
  }

  .top-image {
    position: static;
    transform: none;
    width: 100%;
    height: 300px;
  }

  .block {
    padding: 32px 0;
  }

  .flex {
    gap: 24px;
  }

  .box {
    padding: 24px;
  }

  .item {
    flex: 1 1 100%;
  }

  .fullbleed-area {
    min-height: 300px;
    padding: 48px 16px;
  }

  .fullbleed-content h2 {
    font-size: 32px;
  }

  .fullbleed-content p {
    font-size: 16px;
  }

  .footer-content {
    gap: 32px;
  }

  .footer-chunk {
    flex: 1 1 100%;
  }
}

@media screen and (max-width: 450px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 23px;
  }

  body {
    font-size: 16px;
  }

  .logo {
    font-size: 23px;
  }

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

  .top-content {
    padding: 16px;
  }

  .box {
    padding: 16px;
  }

  .block-header {
    margin-bottom: 32px;
  }
}
