/*
  Note: The fonts 'Igra Sans' and 'Gilroy' are custom fonts.
  You would typically use @font-face to include them.
  For example:
  @font-face {
    font-family: 'Igra Sans';
    src: url('/fonts/IgraSans.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
  }
  @font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
  }
  @font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
  }
*/
:root {
  --color-primary: #88ff00;
  --color-text: #f4ebeb;
  --color-text-secondary: #616161;
  --color-background: #000000;
  --font-main: 'Gilroy', 'Inter', sans-serif;
  --font-display: 'Igra Sans', sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-main);
  overflow-x: hidden;
}
.page-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}
.section-wrapper {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}
a {
  color: inherit;
  text-decoration: none;
}
.btn {
  display: flex;                          /* flex-контейнер */
  justify-content: center;                /* горизонтальне центрування */
  align-items: center;                    /* вертикальне центрування */

  background-color: var(--color-primary);
  color: var(--color-background);
  font-family: var(--font-main);
  font-weight: 700;
  cursor: pointer;
  border: none;

  width: 418px;                            /* ширина */
  height: 120px;                         /* висота */
  
  font-size: 20px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  white-space: nowrap;                    /* забороняє перенос тексту */
  text-decoration: none;                  /* необов’язково – для краси */
}

.text-green {
  color: var(--color-primary);
}
.section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .btn {
    padding: 30px 35px;
    font-size: 18px;
  }
}
/* CSS from section:hero */
.hero-section {
  padding-top: 50px;
  padding-bottom: 50px;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 70px;
}
.hero-content-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.hero-text-content {
  flex-basis: 50%;
  z-index: 10;
}
.hero-features-content {
  flex-basis: 50%;
  position: relative;
  z-index: 10;
}
.hero-subtitle {
  color: var(--color-text-secondary);
  font-size: 12px;
  letter-spacing: 4.5px;
  margin-bottom: 10px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--color-text);
  margin-bottom: 30px;
}
.hero-title .text-green {
  font-size: 100px;
}
.hero-title-secondary {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 1;
  color: var(--color-text);
  position: absolute;
  top: 185px;
  left: 5%;
}
.hero-features-list {
  list-style: none;
  padding: 0;
  margin-top: 4%;
  margin-left: 170px;
}
.hero-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 20px;
}
.hero-features-list img {
  width: 20px;
  height: 20px;
}
.hero-footer {
  margin-top: 40px;
  z-index: 10;
  position: relative;
}
.partners-logo {
  width: 297px;
  height: auto;
}
.hero-disclaimer {
  color: var(--color-text-secondary);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 1.5px;
  margin-top: 35px;
}
.hero-image-container {
  position: absolute;
  top: 86px;
  left: 50%;
  transform: translateX(-35%);
  width: 565px;
  height: 800px;
  z-index: 5;
}
.hero-image-man {
  position: absolute;
  top: -25%;
  left: -10%;
  width: 518px;
  height: 782px;
  opacity: 0.8;
}
.hero-image-gradient {
  position: absolute;
  bottom: 0;
  left: -24px;
  width: 541px;
  height: 375px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 80.22%);
}
.deco-element {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.deco-ellipse-1 {
  width: 723px;
  height: 723px;
  top: 48px;
  left: 33%;
}
.deco-lines-1 {
  position: absolute;
  width: 692px;
  height: 271px;
  top: 45%;   /* регулюєш вертикаль */
  left: 50%;  /* регулюєш горизонталь */
  z-index: 15;  /* більше за hero-image-container (5) і контент (10) */
}

@media (max-width: 1200px) {
  .hero-image-container { left: 55%; }
  .hero-features-list { margin-left: 20px; }
}
@media (max-width: 992px) {
  .hero-content-wrapper { flex-direction: column; }
  .hero-image-container { position: relative; left: 50%; transform: translateX(-50%); top: 0; margin-top: -100px; }
  .hero-features-content { margin-top: -250px; }
  .hero-title-secondary { position: static; }
  .hero-features-list { margin-top: 20px; margin-left: 0; }
  .hero-title { font-size: 60px; }
  .hero-title .text-green { font-size: 80px; }
  .hero-title-secondary { font-size: 80px; }
}
@media (max-width: 576px) {
  .hero-title { font-size: 48px; }
  .hero-title .text-green { font-size: 60px; }
  .hero-title-secondary { font-size: 60px; }
  .hero-image-container { width: 100%; }
  .hero-image-man { width: 90%; height: auto; }
  .hero-image-gradient { width: 100%; }
  .hero-features-content { margin-top: -150px; }
}
/* CSS from section:product-test */
.product-test-section {
  padding-top: 0px;
  padding-bottom: 150px;
}
.product-test-card {
  background-image: url('images/27_48.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  min-height: 348px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 80px;
  gap: 20px;
}
.product-test-content {
  flex-basis: 60%;
}
.product-test-title {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 18px;
}
.product-test-title img {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-right: 0px;
}
.product-test-description {
  font-size: 18px;
  line-height: 1.3;
}
.product-test-image-wrapper {
  position: relative;
  width: 428px;
  height: 418px;
  margin-top: -120px;
  margin-right: -40px;
}
.product-test-hand {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100px;
}
.product-test-screen {
  position: absolute;
  width: 186px;
  height: 336px;
  top: 160px;
  left: 77px;
}
.deco-lines-2 {
  width: 1042px;
  height: 481px;
  top: -100px;
  left: 0;
  z-index: -1;
}
@media (max-width: 992px) {
  .product-test-card {
    flex-direction: column;
    text-align: center;
    padding: 40px;
    background-size: cover;
  }
  .product-test-image-wrapper {
    margin: 20px 0 0 0;
    width: 300px;
    height: 292px;
  }
  .product-test-screen {
    width: 130px;
    height: 235px;
    top: 42px;
    left: 54px;
  }
}
@media (max-width: 576px) {
  .product-test-title { font-size: 32px; }
  .product-test-description { font-size: 16px; }
}
/* CSS from section:foundation */
.foundation-section {
  padding-top: 50px;
}
.foundation-container {
  display: flex;
  align-items: center;
  gap: 80px;
}
.foundation-content {
  flex: 2;
}
.foundation-title {
  font-family: var(--font-display);
  font-size: 68px;
  line-height: 1;
}
.foundation-subtitle {
  font-family: var(--font-display);
  font-size: 88px;
  line-height: 1;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 3px;
}
.foundation-subtitle img {
  width: 69px;
  height: 69px;
}
.foundation-description {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 5%;
  max-width: 521px;
}
.foundation-description .text-green {
  font-weight: 600;
}
.foundation-card {
  flex: 1;
  background-color: #080808;
  border: 1px solid #1b1b1b;
  border-radius: 20px;
  padding: 21px 40px;
  text-align: center;
  position: relative;   
  top: -66px;           
}


.foundation-card-title {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 12px;
}
.foundation-card-text {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.3;
}
.foundation-card-text .text-green {
  font-weight: 600;
}
.deco-lines-3 {
  width: 1408px;
  height: 307px;
  top: 0;
  right: -800px;
  z-index: -1;
}
.deco-star-1 {
  position: absolute;
  width: 42px;
  height: 42px;
  top: -21px;               
  left: 50%;                
  transform: translateX(-50%); 
  z-index: 20;
}


@media (max-width: 992px) {
  .foundation-container {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
    text-align: center;
  }
  .foundation-subtitle {
    justify-content: center;
  }
  .foundation-description {
    margin: 40px auto 0;
  }
}
@media (max-width: 768px) {
  .foundation-title { font-size: 48px; }
  .foundation-subtitle { font-size: 64px; }
  .foundation-subtitle img { width: 50px; height: 50px; }
}
/* CSS from section:audience */
.audience-section {
  padding-top: 150px;
}
.audience-container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.audience-image-wrapper {
  flex: 1;
}
.audience-image {
  width: 559px;
  max-width: 100%;
  height: auto;
}

.audience-image-wrapper {
  position: relative;
  flex: 0 0 auto;          
  display: inline-block;   
  overflow: hidden;       
  transform: translate(-100px, -120px); 
}

.audience-image.audience-image-suit {
  display: block;
  width: 559px;
  max-width: 100%;
  height: auto;

  position: static; 
}

.audience-image-wrapper::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 20%; /* налаштуй висоту затемнення */
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  pointer-events: none;
  z-index: 2; /* поверх картинки */
}

/* Можеш видалити ці правила — вони не потрібні і заважали */
.audience-image-suit img { /* <--- такого елемента нема */
  /* видалити */
}
.audience-image-suit::after { /* псевдоелемент на img не спрацює */
  /* видалити */
}



.audience-content {
  flex: 1;
}
.audience-title {
  font-family: var(--font-display);
  font-size: 88px;
  line-height: 1;
  position: relative;
}
.audience-title img {
  position: absolute;
  width: 55px;
  height: 55px;
  top: 0;
  left: 46%;
}
.audience-subtitle {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  margin-top: 5%;
  display: flex;
  align-items: center;
  gap: 10px;
  
  left: -40px;
}
.audience-arrow {
  width: 34px;
  height: 20px;
}
.audience-description {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 5%;
  max-width: 466px;
}
.audience-cta {
  margin-top: 40px;
  font-size: 22px;
  padding: 46px 50px;
}
.deco-lines-4 {
  width: 1126px;
  height: 992px;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.deco-ellipse-2 {
  width: 835px;
  height: 976px;
  left: 10%;
  bottom: 0;
  z-index: -2;
}
@media (max-width: 992px) {
  .audience-container {
    flex-direction: column;
    text-align: center;
  }
  .audience-title {
    margin-left: 65px;
  }
  .audience-subtitle {
    margin-top: 40px;
    justify-content: center;
  }
  .audience-description {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .audience-title { font-size: 64px; }
  .audience-subtitle { font-size: 18px; }
  .audience-description { font-size: 16px; }
}
/* CSS from section:learnings */
.learnings-section {
  text-align: center;
  padding-bottom: 200px;
}
.learnings-title {
  font-family: var(--font-display);
  font-size: 68px;
  font-weight: 400;
  margin-bottom: 80px;
}
.learnings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 100px;
  text-align: left;
}
.learning-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.learning-item-icon-wrapper {
  position: relative;
  width: 133px;
  height: 95px;
  flex-shrink: 0;
}
.learning-item-number {
  font-family: var(--font-display);
  font-size: 95px;
  color: rgba(244, 235, 235, 0.1);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  line-height: 1;
  z-index: 1;
}
.learning-item-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.learning-item p {
  font-size: 18px;
  line-height: 1.4;
  padding-top: 30px;
}
.learnings-bg-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 380px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  z-index: 5;
}
.deco-scribble {
  width: 897px;
  height: 808px;
  bottom: 0;
  right: 0;
  opacity: 0.4;
  z-index: 1;
}
@media (max-width: 992px) {
  .learnings-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .learnings-title { font-size: 48px; }
  .learning-item p { font-size: 16px; padding-top: 20px; }
}
/* CSS from section:contact */
.contact-section {
  padding-top: 0;
}
.contact-card {
  background-image: url('images/43_226.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  min-height: 348px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 80px;
  gap: 20px;
}
.contact-title {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.contact-title img {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-right: 8px;
}
.contact-subtitle {
  font-size: 18px;
}
.contact-subtitle a {
  font-weight: 500;
}
.contact-cta {
  font-size: 22px;
  padding: 46px 50px;
}
@media (max-width: 992px) {
  .contact-card {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 60px 40px;
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .contact-title { font-size: 32px; }
  .contact-subtitle { font-size: 16px; }
}
/* CSS from section:footer */
.footer-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 24px;
}/* Styles for the modal form */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s;
  z-index: 1000;
}

.modal-overlay:target {
  visibility: visible;
  opacity: 1;
}

.modal-form {
  background-color: #000000;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 450px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: modal-open 0.5s ease-out;
}

@keyframes modal-open {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  color: #aaa;
  text-decoration: none;
  line-height: 1;
  transition: color 0.2s;
}

.close-btn:hover {
  color: #ffffff;
}

.modal-form h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #ffffff;
}

.modal-form p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 25px;
}

.modal-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-form input[type="text"] {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #444;
  background-color: #2b2b2b;
  color: #ffffff;
  border-radius: 8px;
  box-sizing: border-box;
}

.modal-form input::placeholder {
  color: #888;
}

/* Styles for the Intl-Tel-Input library */
.modal-form .iti {
  width: 100%;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  border: 1px solid #444;
  background-color: #333;
  border-radius: 8px;
}

.modal-form .iti__flag-container,
.modal-form .iti__country-list {
  font-family: Arial, sans-serif;
}

.modal-form .iti__selected-country {
  padding: 0 15px;
  background-color: transparent;
  border-right: 1px solid #444;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  transition: background-color 0.2s;
  outline: none;
}

.modal-form .iti__selected-country:hover {
  background-color: #383838;
}

.modal-form .iti__selected-dial-code {
  color: #ffffff;
}

.modal-form .iti input[type=tel] {
  border: none;
  background: transparent;
  padding: 15px 20px 15px 15px;
}

.modal-form .iti__country-list {
  background-color: #2a2a2a;
  color: #ffffff;
  border: 1px solid #444;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

.modal-form .iti__country {
  padding-top: 10px;
  padding-bottom: 10px;
}

.modal-form .iti__country:hover,
.modal-form .iti__country.iti__highlight {
  background-color: #383838;
}

.modal-form button[type="submit"] {
  padding: 15px;
  background-color: #76ff03;
  color: #000;
  border: none;
  border-radius: 0;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}

.modal-form button[type="submit"]:hover {
  background-color: #66cc00;
}
/* Styles for the close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  color: #66cc00;
  text-decoration: none;
  line-height: 1;
  transition: color 0.2s;
}

.close-btn:hover {
  color: #ffffff;
}

.main-title-val {
  color: var(--color-text);
}





@media (max-width: 1024px) {
  
  .btn {
    width: 350px;
    height: 100px;
    font-size: 18px;
    letter-spacing: 2px;
  }

  .section {
    padding: 80px 0;
  }

  .container {
    max-width: 1000px;
    padding: 0 15px;
  }

  .hero-brand {
    font-size: 20px;
    margin-bottom: 50px;
  }

  .hero-subtitle {
    font-size: 10px;
    letter-spacing: 3.5px;
    margin-bottom: 8px;
  }

  .hero-title {
    font-size: 60px;
    margin-bottom: 25px;
  }

  .hero-title .text-green {
    font-size: 80px;
  }

  .hero-title-secondary {
    font-size: 80px;
    top: 150px;
  }

  .hero-features-list {
    margin-top: 3%;
    margin-left: 140px;
  }

  .hero-features-list li {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .hero-features-list img {
    width: 18px;
    height: 18px;
  }

  .hero-footer {
    margin-top: 30px;
  }

  .partners-logo {
    width: 250px;
  }

  .hero-disclaimer {
    font-size: 10px;
    letter-spacing: 1.2px;
    margin-top: 30px;
  }

  .hero-image-container {
    top: 70px;
    width: 450px;
    height: 650px;
    transform: translateX(-40%);
  }

  .hero-image-man {
    top: -20%;
    left: -8%;
    width: 420px;
    height: 650px;
  }

  .hero-image-gradient {
    left: -20px;
    width: 450px;
    height: 300px;
  }

  .deco-ellipse-1 {
    width: 600px;
    height: 600px;
    top: 40px;
    left: 30%;
  }

  .deco-lines-1 {
    width: 550px;
    height: 220px;
    top: 40%;
  }

  .product-test-section {
    padding-bottom: 120px;
  }

  .product-test-card {
    min-height: 300px;
    padding: 30px 60px;
  }

  .product-test-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .product-test-title img {
    width: 25px;
    height: 25px;
  }

  .product-test-description {
    font-size: 16px;
  }

  .product-test-image-wrapper {
    width: 350px;
    height: 340px;
    margin-top: -100px;
    margin-right: -30px;
  }

  .product-test-hand {
    top: 80px;
  }

  .product-test-screen {
    width: 150px;
    height: 270px;
    top: 130px;
    left: 60px;
  }

  .deco-lines-2 {
    width: 850px;
    height: 400px;
    top: -80px;
  }

  .foundation-title {
    font-size: 55px;
  }

  .foundation-subtitle {
    font-size: 70px;
    gap: 10px;
    margin-top: 2px;
  }

  .foundation-subtitle img {
    width: 55px;
    height: 55px;
  }

  .foundation-description {
    font-size: 16px;
    margin-top: 4%;
    max-width: 450px;
  }

  .foundation-card {
    padding: 18px 35px;
    top: -55px;
  }

  .foundation-card-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .foundation-card-text {
    font-size: 14px;
  }

  .deco-lines-3 {
    width: 1200px;
    height: 250px;
    right: -650px;
  }

  .deco-star-1 {
    width: 35px;
    height: 35px;
    top: -18px;
  }

  .audience-section {
    padding-top: 120px;
  }

  .audience-container {
    gap: 50px;
  }

  .audience-image-wrapper {
    transform: translate(-80px, -100px);
  }

  .audience-image {
    width: 450px;
  }

  .audience-title {
    font-size: 70px;
  }

  .audience-title img {
    width: 45px;
    height: 45px;
    left: 45%;
  }

  .audience-subtitle {
    font-size: 16px;
    margin-top: 4%;
    gap: 8px;
    left: -30px;
  }

  .audience-arrow {
    width: 28px;
    height: 16px;
  }

  .audience-description {
    font-size: 16px;
    margin-top: 4%;
    max-width: 400px;
  }

  .audience-cta {
    margin-top: 30px;
    font-size: 20px;
    padding: 40px 45px;
  }

  .deco-lines-4 {
    width: 900px;
    height: 800px;
  }

  .deco-ellipse-2 {
    width: 700px;
    height: 800px;
    left: 8%;
  }

  .learnings-title {
    font-size: 55px;
    margin-bottom: 60px;
  }

  .learnings-grid {
    gap: 30px 80px;
  }

  .learning-item-icon-wrapper {
    width: 110px;
    height: 80px;
  }

  .learning-item-number {
    font-size: 80px;
  }

  .learning-item p {
    font-size: 16px;
    padding-top: 25px;
  }

  .learnings-bg-gradient {
    height: 300px;
  }

  .deco-scribble {
    width: 750px;
    height: 650px;
  }

  .contact-card {
    min-height: 300px;
    padding: 30px 60px;
  }

  .contact-title {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .contact-title img {
    width: 25px;
    height: 25px;
    margin-right: 6px;
  }

  .contact-subtitle {
    font-size: 16px;
  }

  .contact-cta {
    font-size: 20px;
    padding: 40px 45px;
  }

  /* Footer section */
  .footer-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .footer-brand {
    font-size: 20px;
  }

  .modal-form {
    padding: 30px;
    max-width: 400px;
  }

  .modal-form h2 {
    font-size: 22px;
  }

  .modal-form p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .modal-form input[type="text"] {
    padding: 12px 18px;
  }

  .modal-form button[type="submit"] {
    padding: 12px;
  }

  .close-btn {
    top: 12px;
    right: 15px;
    font-size: 28px;
  }
}