<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mallanna&amp;display=swap');

:root {
  /* Ð¦Ð²ÐµÑ‚Ð° */
  --primary-color: #ffffff;
  --secondary-color: #fbfbfb;
  --accent-color: #d9d9d9;
  --text-color: #000000;
  --form-bg: #ececec;
  
  /* Ð¨Ñ€Ð¸Ñ„Ñ‚Ñ‹ */
  --title-font-family: "Montserrat", sans-serif;
  --title-font-weight: 600;
  --title-font-size: 32px;
  --title-letter-spacing: 0px;
  --title-line-height: normal;
  
  --text-font-family: "Montserrat", sans-serif;
  --text-font-weight: 400;
  --text-font-size: 24px;
  --text-letter-spacing: 0px;
  --text-line-height: 1.6;
  
  --text-2-font-family: "Mallanna", sans-serif;
  --text-2-font-weight: 400;
  --text-2-font-size: 24px;
  --text-2-letter-spacing: 0px;
  --text-2-line-height: 1.6;
  
  --handwriting-font: "Reenie Beanie", cursive;
  
  /* Ð&nbsp;Ð°Ð·Ð¼ÐµÑ€Ñ‹ */
  --desktop-width: 1920px;
  --tablet-width: 1024px;
  --mobile-width: 768px;
  --mobile-small: 480px;
  
  /* Ð¢ÐµÐ½Ð¸ */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-inset: inset 2px 2px 17.5px rgba(0,0,0,0.07);
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--text-font-family);
  font-weight: var(--text-font-weight);
  color: var(--text-color);
  line-height: var(--text-line-height);
  background-color: var(--secondary-color);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Ð¢Ð¸Ð¿Ð¾Ð³Ñ€Ð°Ñ„Ð¸Ñ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--title-font-family);
  font-weight: var(--title-font-weight);
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* ÐšÐ½Ð¾Ð¿ÐºÐ¸ Ð¸ Ð¸Ð½Ñ‚ÐµÑ€Ð°ÐºÑ‚Ð¸Ð²Ð½Ñ‹Ðµ ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ñ‹ */
button, 
input[type="submit"], 
input[type="button"] {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

button:focus-visible {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

/* Ð¤Ð¾Ñ€Ð¼Ñ‹ */
input, 
textarea, 
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background-color: var(--form-bg);
  padding: 1rem;
  width: 100%;
  box-shadow: var(--shadow-inset);
  transition: all 0.3s ease;
}

input:focus, 
textarea:focus, 
select:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.1);
}

/* ÐÐ´Ð°Ð¿Ñ‚Ð¸Ð²Ð½Ñ‹Ðµ Ð¼ÐµÐ´Ð¸Ð°-Ð·Ð°Ð¿Ñ€Ð¾ÑÑ‹ */
@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 14px;
  }
  
  :root {
    --title-font-size: 28px;
    --text-font-size: 20px;
    --text-2-font-size: 20px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 13px;
  }
  
  :root {
    --title-font-size: 24px;
    --text-font-size: 18px;
    --text-2-font-size: 18px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 12px;
  }
  
  :root {
    --title-font-size: 20px;
    --text-font-size: 16px;
    --text-2-font-size: 16px;
  }
}

/* Ð’ÑÐ¿Ð¾Ð¼Ð¾Ð³Ð°Ñ‚ÐµÐ»ÑŒÐ½Ñ‹Ðµ ÐºÐ»Ð°ÑÑÑ‹ */
.container {
  width: 100%;
  max-width: var(--desktop-width);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

/* ÐÐ½Ð¸Ð¼Ð°Ñ†Ð¸Ð¸ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}</pre></body></html>