<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global Styles */
:root {
  --container-width: min(90%, 1200px);
  --section-padding: clamp(2rem, 5vw, 4rem);
  --primary-color: #000000;
  --secondary-color: #f4f4f4;
  --accent-color: #ececec;
  --text-color: #000000;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat-Regular", Helvetica, sans-serif;
  line-height: 1.6;
}

.container {
  width: var(--container-width);
  margin: 0 auto;
  padding: var(--section-padding);
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 1080px;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.slider-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 90%;
  max-width: 1200px;
  padding: 0 20px;
  z-index: 2;
}

.slider-caption h1 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

/* Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  border-radius: 50%;
  width: clamp(35px, 5vw, 50px);
  height: clamp(35px, 5vw, 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-nav:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slider-nav.prev { left: 20px; }
.slider-nav.next { right: 20px; }

/* Content Sections */
.section {
  padding: var(--section-padding);
  background-color: var(--secondary-color);
}

.section-title {
  font-family: "Mallanna-Regular", Helvetica;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.section-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  text-align: center;
}

/* Image Grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.image-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Form Section */
.form-section {
  background-color: var(--secondary-color);
  padding: var(--section-padding);
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 90%;
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-family: "Montserrat-SemiBold", Helvetica;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  background-color: var(--accent-color);
}

.submit-button {
  width: 100%;
  max-width: 300px;
  margin: 2rem auto;
  padding: 1rem 2rem;
  background-color: var(--accent-color);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-color);
}

.submit-button:hover {
  background-color: #c0c0c0;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: white;
  padding: 2rem;
  text-align: center;
}

.copyright {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  margin: 0;
}

/* Media Queries */
@media (max-width: 1200px) {
  .container {
    width: 95%;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
  }
  
  .slider-caption h1 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
  }
  
  .section {
    padding: 2rem 1rem;
  }
  
  .image-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 50vh;
  }
  
  .slider-caption h1 {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
  }
  
  .form-container {
    padding: 1rem;
  }
  
  .submit-button {
    padding: 0.8rem 1.6rem;
  }
}

/* Ð”Ð²ÑƒÑ…ÐºÐ¾Ð»Ð¾Ð½Ð¾Ñ‡Ð½Ñ‹Ð¹ layout Ð´Ð»Ñ ÑÐµÐºÑ†Ð¸Ð¹ Ñ Ñ„Ð¾Ñ‚Ð¾ Ð¸ Ñ‚ÐµÐºÑÑ‚Ð¾Ð¼ */
.section-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.section-col {
  flex: 1 1 0;
}
.side-image {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
@media (max-width: 900px) {
  .section-row {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .section-col {
    width: 50%;
  }

  .section-row:nth-child(odd) {
    flex-direction: row;
  }

  .side-image {
    width: 100%;
    height: auto;
    max-width: none;
  }

  .image-overlay-container {
    max-width: 100%;
  }

  .image-overlay-text {
    font-size: 1.2rem;
    padding: 0.4rem 0.6rem;
  }

  .section-content {
    font-size: 0.9rem;
    text-align: left;
  }
}

.image-overlay-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 400px;
}
.image-overlay-text {
  position: absolute;
  color: #fff;
  font-family: 'Reenie Beanie', cursive;
  font-size: 2.2rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  padding: 0.7rem 1.2rem;
  pointer-events: none;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.overlay-top-right {
  top: 0.7rem;
  right: 0.7rem;
  text-align: right;
}
.overlay-top-left {
  top: 0.7rem;
  left: 0.7rem;
  text-align: left;
}
.overlay-bottom-right {
  bottom: 0.7rem;
  right: 0.7rem;
  text-align: right;
}
@media (max-width: 900px) {
  .image-overlay-container {
    max-width: 100%;
  }
  .image-overlay-text {
    font-size: 1.4rem;
    padding: 0.5rem 0.7rem;
  }
}

.overlay-black {
  color: #111 !important;
  text-shadow: none !important;
}</pre></body></html>