/* Основні стилі */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

/* Заголовок */
header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-block {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.logo-text {
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.main-nav a:hover {
  background-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* Головна секція */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.main-btn {
  background: #ff6b6b;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}

.main-btn:hover {
  background: #ff5252;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,107,107,0.4);
}

.secondary-btn {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border: 2px solid white;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
}

.secondary-btn:hover {
  background: white;
  color: #667eea;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Переваги */
.benefits {
  padding: 4rem 2rem;
  background: white;
}

.benefits h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: #f8f9fa;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

/* Калькулятор */
.calculator-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.calculator-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.calc-group label {
  font-weight: bold;
  font-size: 1.1rem;
}

.calc-group input,
.calc-group select {
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(255,255,255,0.9);
}

.calc-btn {
  background: #ff6b6b;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.calc-btn:hover {
  background: #ff5252;
  transform: translateY(-2px);
}

.calc-result {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc-result h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.result-display {
  margin-bottom: 1rem;
}

.result-amount {
  font-size: 3rem;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}

.result-label {
  font-size: 1.2rem;
  opacity: 0.8;
}

.result-note {
  font-size: 0.9rem;
  opacity: 0.7;
  font-style: italic;
}

/* Види допомоги */
.types-help {
  padding: 4rem 2rem;
  background: white;
}

.types-help h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.help-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.help-type {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.help-type:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.help-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.help-type h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.help-type p {
  color: #666;
  margin-bottom: 1rem;
}

.help-type ul {
  list-style: none;
  padding: 0;
}

.help-type li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
  color: #666;
}

.help-type li:before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Інформаційний блок */
.info-block {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
}

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

.info-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.info-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.info-text a {
  color: #ff6b6b;
  text-decoration: none;
  font-weight: bold;
}

.info-steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.step-number {
  display: block;
  width: 50px;
  height: 50px;
  background: #ff6b6b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

.step-text {
  font-weight: bold;
}

/* Відгуки */
.testimonials {
  padding: 4rem 2rem;
  background: white;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  color: #666;
  line-height: 1.6;
}

.testimonial-author {
  border-top: 1px solid #e9ecef;
  padding-top: 1rem;
}

.author-name {
  font-weight: bold;
  color: #333;
  display: block;
}

.author-location {
  color: #666;
  font-size: 0.9rem;
}

/* Про нас */
.about-block {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.about-block h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #555;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-stat {
  text-align: center;
  background: rgba(255,255,255,0.8);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.about-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.about-stat-text {
  color: #666;
  font-weight: bold;
}

/* FAQ */
.faq-block {
  padding: 4rem 2rem;
  background: white;
}

.faq-block h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

/* Контакти */
.contacts-block {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.contacts-block h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.contacts-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-form {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

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

.contact-form-fields input,
.contact-form-fields textarea {
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(255,255,255,0.9);
  color: #333;
}

.contact-form-fields textarea {
  resize: vertical;
  min-height: 100px;
}

/* Футер */
footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #ff6b6b;
}

.footer-section a {
  color: #bdc3c7;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 1rem;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: #bdc3c7;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: white;
}

/* Секції для інших сторінок */
.steps-section {
  padding: 4rem 2rem;
  background: white;
}

.steps-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: #ff6b6b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.step-card h3 {
  font-size: 1.5rem;
  margin: 1rem 0 1rem 0;
  color: #333;
}

.step-card p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.step-card ul {
  list-style: none;
  padding: 0;
}

.step-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
  color: #666;
}

.step-card li:before {
  content: "→";
  color: #ff6b6b;
  font-weight: bold;
  margin-right: 0.5rem;
}

.documents-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.documents-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.document-category {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.document-category h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #ff6b6b;
}

.document-category ul {
  list-style: none;
  padding: 0;
}

.document-category li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}

.document-category li:before {
  content: "📄";
  margin-right: 0.8rem;
}

.application-form {
  padding: 4rem 2rem;
  background: white;
}

.application-form h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.form-info {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.faq-section {
  padding: 4rem 2rem;
  background: #f8f9fa;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

/* Організації */
.organizations-section {
  padding: 4rem 2rem;
  background: white;
}

.organizations-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.organizations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.organization-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  text-align: center;
}

.organization-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.org-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.organization-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.organization-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.org-details p {
  margin-bottom: 0.5rem;
  color: #333;
}

.org-details a {
  color: #667eea;
  text-decoration: none;
  font-weight: bold;
}

.org-details a:hover {
  text-decoration: underline;
}

.locations-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.locations-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

.locations-info p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.locations-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.locations-info li {
  padding: 0.8rem 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.locations-info a {
  color: #ff6b6b;
  text-decoration: none;
  font-weight: bold;
}

.online-services {
  padding: 4rem 2rem;
  background: white;
}

.online-services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.service-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-card li {
  padding: 0.5rem 0;
  color: #666;
}

.service-card li:before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  margin-right: 0.5rem;
}

.service-link {
  background: #667eea;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
}

.service-link:hover {
  background: #5a6fd8;
  transform: translateY(-2px);
}

.contact-info-section {
  padding: 4rem 2rem;
  background: #f8f9fa;
}

.contact-info-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-card p {
  color: #666;
  line-height: 1.6;
}

/* Політика конфіденційності */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.privacy-section {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.privacy-section h2 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.privacy-section h3 {
  color: #667eea;
  margin: 1.5rem 0 1rem 0;
  font-size: 1.3rem;
}

.privacy-section p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.privacy-section ul {
  list-style: none;
  padding: 0;
}

.privacy-section li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
  color: #666;
}

.privacy-section li:before {
  content: "•";
  color: #667eea;
  font-weight: bold;
  margin-right: 0.5rem;
}

.contact-info {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.consent-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.consent-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.consent-content {
  max-width: 600px;
  margin: 0 auto;
}

.consent-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.consent-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: left;
}

.consent-content li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  opacity: 0.9;
}

.consent-content li:before {
  content: "✓";
  color: #ff6b6b;
  font-weight: bold;
  margin-right: 0.8rem;
}

/* Мобільна адаптація */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .calculator {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contacts-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .main-nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .organizations-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-list {
    grid-template-columns: 1fr;
  }
  
  .help-types {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .documents-grid {
    grid-template-columns: 1fr;
  }
  
  .info-steps {
    flex-direction: column;
    gap: 1rem;
  }
  
  .about-stats {
    flex-direction: row;
    justify-content: space-around;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .main-btn,
  .secondary-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .benefits,
  .calculator-section,
  .types-help,
  .info-block,
  .testimonials,
  .about-block,
  .faq-block,
  .contacts-block {
    padding: 2rem 1rem;
  }
  
  .calculator {
    padding: 1rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .privacy-content {
    padding: 1rem;
  }
  
  .privacy-section {
    padding: 1rem;
  }
}

/* --- CSS BURGER MENU --- */
.nav-toggle-label {
  display: none;
  position: absolute;
  top: 1.2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2001;
}
.nav-toggle-label span {
  display: block;
  width: 30px;
  height: 4px;
  margin: 5px 0;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 2000;
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(.77,0,.18,1);
    opacity: 0.98;
  }
  .nav-toggle-label {
    display: flex;
  }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  .nav-toggle:checked ~ .main-nav {
    transform: translateY(0);
  }
  .main-nav a {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    border-radius: 20px;
    background: none;
    color: #fff;
    transition: background 0.2s, color 0.2s;
  }
  .main-nav a:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
  }
}

@media (max-width: 480px) {
  .nav-toggle-label {
    right: 1rem;
    top: 1rem;
  }
}