:root {
  --primary-color: #d6b0c2;
  --text-color: #eee;
  --bg-color: #FFFFFF;
  --accent-color: #b65e85;
  --container-width: 1280px;
  --highlight-red: #FF285A;
  --highlight-text: #5D6883;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background: var(--bg-color);
  color: var(--text-color);
}


.hero {
  max-width: 100%;
  background: url('image/header.png') center center no-repeat;
  background-size: cover;
  position: relative;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0; /* растягиваем на весь блок */
  background: rgba(255, 255, 255, 0.3); /* или любой цвет */
  z-index: 1; /* ниже контента, выше background */
  pointer-events: none; /* чтобы не мешал кликам */
  display: none;
}
.hero h1 {
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  z-index:2;
}

.hero-logo {
  width: 126px;
  height: 116px;
  margin-top: 20px;
  margin-bottom: 64px;
}

.hero-logo img {
  width: 100%;
  height: auto;
}

.hero-text-block {
  
  width: 640px;
}

.hero-text-block h1 {
  font-family: 'Cormorant Infant', serif;
  font-weight: 600;
  font-size: 70px;
  line-height: 70px;
  text-transform: uppercase;
  color: #5D6883;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
}

.hero-text-block h1 span {
  color: var(--highlight-red);
}

.hero-location {
  width: 640px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 70px;
  color: #FF285A;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 70px;
  color: #5D6883;
  max-width: 640px;
  padding-top: 60px;
  padding-bottom: 10px;
}

.hero .hero-buttons {
  margin-bottom: 228px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  
}


.hero-btn {
  border-radius: 10px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 70px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #FF285A;
  color: #ffffff;
  text-decoration: none;
}

.hero-btn:first-child {
  width: 269px;
  height: 68px;
}

.hero-btn:nth-child(2), .hero-btn:nth-child(3) {
  width: 68px;
  height: 68px;
}

.hero-btn:nth-child(2) img {
  width: 28.21px;
  height: 28.10px;
}

.hero-btn:nth-child(3) img {
  width: 28.82px;
  height: 25.19px;
}

.hero-description {
  border: none;
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 20px;
  color: #5D6883;
  background: transparent;
  margin-top: 160px;
  border: 1px solid #5D6883
}

.location-section {
  margin-top: 60px;
  margin-bottom: 92px;
  max-width: 1280px;
  border-radius: 30px;
  margin-inline: auto;
  text-align: center;
  padding:10px;
  position: relative;
}

.location-section h2 {
  font-family: 'Cormorant Infant', serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 70px;
  text-transform: uppercase;
  color: var(--highlight-text);
}

.location-section h2 span {
  color: var(--highlight-red);
}

.location-section p {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--highlight-text);
}

.location-map {
  max-width: 1280px;
  border-radius: 30px;
  margin: 80px auto 0;
  display: block;
  padding:10px;
}

.programs {
  max-width: 100%;
  margin: 0 auto;
  
  background: url('image/cloud_prog.png') center center no-repeat;
}
.programs_cont{
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  padding:10px;
  background: url('image/cloud_prog.png') center center no-repeat;
}
.programs h2 {
  font-family: 'Cormorant Infant', serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 70px;
  text-transform: uppercase;
}

.programs h2 span:first-child {
  color: var(--highlight-red);
}

.programs h2 span:last-child {
  color: var(--highlight-text);
}

.programs-subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #5D6883;
  text-align: center;
  margin-bottom: 34px;
}



.cards.programs-grid .card button {
  background: #FF285A;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color:#ffffff;
  border: none;
  cursor: pointer;
}
.cards.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 96px;
  position: relative;
}

.cards.programs-grid .card {
  max-width: 100%;
  border-radius: 30px;
  background: linear-gradient(164.79deg, #E7E7E7 2.33%, #FFF2F2 97.03%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  cursor: pointer;
}
/* Стили для карточек программ */
.card img {
  width: 284px;
  height: 284px;
  border-radius: 25px;
  margin-bottom:20px;
}

.card h3 {
  font-family: 'Cormorant Infant';
  font-weight: 600;
  font-size: 26px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: underline;
  color: #5D6883;
  margin-bottom:20px;
}

.card p:first-of-type {
  font-family: 'Roboto';
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #5D6883;
  margin-bottom:20px;
}

.card p:last-of-type {
  font-family: 'Cormorant Infant';
  font-weight: 600;
  font-size: 40px;
  line-height: 30px;
  text-align: center;
  color: #FF285A;
  margin-bottom:20px;
}

.card button {
  width: 237px;
  height: 60px;
  border-radius: 10px;
  font-family: 'Roboto';
  font-weight: 400;
  font-size: 20px;
  line-height: 70px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  margin-bottom:20px;
}

.cardmaster img {
  width: 284px;
  height: 284px;
  border-radius: 25px;
  margin-bottom:20px;
}

.cardmaster h3 {
  font-family: 'Cormorant Infant';
  font-weight: 600;
  font-size: 26px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: underline;
  color: #5D6883;
  margin-bottom:20px;
}

.cardmaster p:first-of-type {
  font-family: 'Roboto';
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #5D6883;
  margin-bottom:20px;
}

.cardmaster p:last-of-type {
  font-family: 'Cormorant Infant';
  font-weight: 600;
  font-size: 40px;
  line-height: 30px;
  text-align: center;
  color: #E5012B;
  margin-bottom:20px;
}

.cardmaster button {
  width: 237px;
  height: 60px;
  border-radius: 10px;
  font-family: 'Roboto';
  font-weight: 400;
  font-size: 20px;
  line-height: 70px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  margin-bottom:20px;
}

.hero-text-block {
  max-width: 640px;
}

.hero-location {
  line-height: unset;
}

.location-section {
  height: unset;
}

.extras,
.masters {
  max-width: 1280px;
  margin: 0 auto;
  padding:10px;
}
/* Стили для секции extras */
.extras {
  max-width: 100%;
  margin: 0 auto;
  
  background: url('image/cloud_dop.png') center center no-repeat;
}
.extras_cont{
  width: 1280px;
  margin: 0 auto 96px auto;
  text-align: center;
  padding:10px;
}
.extras h2 {
  font-family: 'Cormorant Infant';
  font-weight: 600;
  font-size: 50px;
  line-height: 70px;
  text-transform: uppercase;
}

.extras h2 span:first-child {
  color: #FF285A;
}

.extras h2 span:last-child {
  color: #5D6883;
}

.extras .subtitle {
  font-family: 'Roboto';
  font-weight: 300;
  font-size: 18px;
  color: #5D6883;
  text-align: center;
  margin-bottom: 34px;
}

.extras-list {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1280px;
  background: linear-gradient(164.79deg, #E7E7E7 2.33%, #FEF1F1 97.03%);
  padding: 30px 40px;
  border-radius: 30px;
  list-style: none;
}

.extras-list-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.extras-list-column li {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  width: 100%;
}

.extras-list-column .title {
  font-family: 'Cormorant Infant';
  font-weight: 600;
  font-size: 26px;
  line-height: 30px;
  text-transform: uppercase;
  color: #5D6883;
  flex-shrink: 0;
  max-width: 330px;
  text-align: left;
}

.extras-list-column .line {
  flex-grow: 1;
  height: 1px;
  background-color: #5D6883;
  align-self: flex-end;
  margin: 0 10px 4px 10px;
}

.extras-list-column .price {
  color: #FF285A;
  font-family: 'Cormorant Infant';
  font-weight: 600;
  font-size: 26px;
  line-height: 30px;
  white-space: nowrap;
  flex-shrink: 0;
}
/* Секция контактной кнопки */
.kontakt {
  max-width: 1280px;
  margin: 0 auto 96px auto;
  text-align: center;
  padding: 30px 40px;
}

.kontakt h2 {
  font-family: 'Roboto';
  font-weight: 300;
  font-size: 24px;
  line-height: 1.5;
  color: #5D6883;
  margin-bottom: 32px;
}

.kontakt .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
/* Кнопки без тени по умолчанию */
.hero-btn,
.card button {
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}

/* При наведении — включаем тень */
.hero-btn:hover,
.card button:hover {
  box-shadow: 0px 4px 40px 0px #C60024;
}
/* Секция Наши мастера */
.masters {
  width: 1280px;
  margin: 0 auto 70px auto;
  border-radius: 25px;
  text-align: center;
  padding:10px;
}

.masters h2 {
  font-family: 'Cormorant Infant';
  font-weight: 600;
  font-size: 50px;
  text-transform: uppercase;
  text-align: center;
}

.masters h2 span:first-child {
  color: #5D6883;
}

.masters h2 span:last-child {
  color: #FF285A;
}

.masters p.subtitle {
  font-family: 'Roboto';
  font-weight: 300;
  font-size: 18px;
  color: #5D6883;
  margin-bottom: 20px;
  text-align: center;
}

.masters-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.masters-grid .cardmaster {
  max-width: 300px;
  
  border-radius: 25px;
  overflow: hidden;
}

.masters-grid .cardmaster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}
/* Footer */
.footer {
  width: 100%;
  background:url('image/cloud_footer.png') 77.67% 50% / cover no-repeat,
  linear-gradient(0deg, #F4C1CD 0%, #FFFFFF 100%);
 
  padding: 40px 20px;
  color: #5D6883;
  background-size: cover;
  position: relative;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  z-index: 3;
  position: relative;
}

.footer h3 {
  font-family: 'Cormorant Infant';
  font-weight: 600;
  font-size: 30px;
  line-height: 70px;
  text-transform: uppercase;
  color: #5D6883;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column a {
  font-family: 'Roboto';
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #5D6883;
  text-decoration: none;
}

.footer-address {
  text-align: right;
}

.footer-address p {
  font-family: 'Roboto';
  font-weight: 300;
  font-size: 18px;
  color: #5D6883;
}

.footer-address a {
  font-family: 'Roboto';
  font-weight: 400;
  font-size: 30px;
  margin-top: 10px;
  color: #5D6883;
  text-decoration: none;
}
.footer .hero-btn:first-child{
  width:50px;
  height:50px;
}
.footer .hero-btn:first-child img{
  width: 20.21px;
  height: 20.10px;
}
.footer .hero-btn:nth-child(2){
  width:50px;
  height:50px;
}
.footer .hero-btn:nth-child(2) img{
  width: 20.21px;
  height: 20.10px;
}
.footer .hero-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 10px;
}

.footer-note {
  margin-top: 20px;
  text-align: left;
  font-family: 'Roboto';
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #DE3454;
}
.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-columns-left {
  display: flex;
  gap: 60px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-address {
  text-align: right;
}
/* Стили для sticky меню */

.sticky-menu {
  position: fixed;
  top: 0;
  width: 100%;
  background: #FFFFFFCC;
  backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.sticky-menu.show {
  opacity: 1;
  visibility: visible;
}

.sticky-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.menu-left a {
  font-family: 'Roboto';
  font-weight: 300;
  font-size: 20px;
  line-height: 13px;
  color: #5D6883;
  text-decoration: none;
  margin-right: 40px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  text-transform: none;
  transition: none;
}

.menu-left a:hover {
  background: transparent;
  color: #5D6883;
}

.menu-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-btn {
  width: 172px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #5D6883;
  background: transparent;
  color: #5D6883;
  font-family: 'Roboto';
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.call-btn:hover {
  background: #FF285A;
  border-color: #FF285A;
  color: #FFF;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #5D6883;
  background: transparent;
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.icon-btn img {
  width: 18.65px;
  height: 16.3px;
  object-fit: contain;
}
/* Модальное окно программы */
.program-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgb(255 255 255 / 80%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  display: none;
}

.program-modal.active {
  display: flex;
}

.modal-content {
  max-width: 828px;
  background: #FFFFFF;
  box-shadow: 0px 4px 40px 0px #C4C4C4;
  border-radius: 20px;
  display: flex;
  gap: 40px;
  padding: 40px;
  color: #5D6883;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #5D6883;
  cursor: pointer;
}

.modal-content img {
  width: 284px;
  height: 284px;
  border-radius: 25px;
  object-fit: cover;
}
.modal-content .hero-btn img{
  border-radius: 0px;
  object-fit: none;
}
.modal-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  max-width: 398px;
}

#modalTitle {
  font-family: 'Cormorant Infant';
  font-weight: 600;
  font-size: 26px;
  line-height: 30px;
  text-decoration: underline;
  color: #5D6883;
  margin-bottom: 30px;
}

#modalDescription {
  font-family: 'Roboto';
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #5D6883;
  margin: 10px 0;
}

#modalTime {
  font-family: 'Roboto';
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: #5D6883;
  margin-bottom: 30px;
}

#modalPrice {
  font-family: 'Cormorant Infant';
  font-weight: 600;
  font-size: 40px;
  line-height: 30px;
  color: #FF285A;
  margin-bottom: 30px;
}

.modal-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.mobile-header{display:none}
.mobile-menu-overlay{display:none}




@media (max-width: 1500px) {
  
}
@media (max-width: 1280px) {
  .hero-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }
  .hero::before {
    display: block;
  }
  .location-section {
    margin-top: 10px;
    margin-bottom: 10px;
    max-width: 100%;
  }
  .location-map {
    max-width: 100%;
    margin: 10px auto 0;
  }
  .programs {
    max-width: 100%;
  }
  .extras,
  .masters {
    max-width: 100%;
    margin: 0 auto;
  }
  .extras_cont{
    max-width: 100%;
    margin: 0 auto;
  }
  .programs_cont{
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-text-block {
    max-width: 100%;
  }
  .kontakt {
    max-width: 100%;
    margin: 0 auto 10px auto;
  }
  .footer-inner {
    max-width: 100%;
  }
  .modal-content {
    max-width: 90%;
  }
  .modal-text {
    max-width: 90%;
  }
  .hero-subtitle {
    font-size: 18px;
    line-height: 25px;
    max-width: 100%;
    padding-top: 10px;
    padding-bottom: 30px;
  }
  .hero-location{
    width:100%;
    margin-bottom: 70px;
  }
  .extras-list {
    width: 100%;
    padding: 30px 40px;
    flex-direction: column;
  }
  
}
@media (max-width: 830px) {
  .footer-columns-left{
    gap: 10px;
    flex-direction: column;
  }
  .footer-address {
    margin-top: 30px;
    text-align: left;
  }
  .footer .hero-buttons{
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .mobile-header{display:block}
.mobile-menu-overlay{display:block}
  .sticky-menu { display: none !important; }
  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffffcc;
    backdrop-filter: blur(5px);
    z-index: 999;
    transition: transform 0.3s ease;
    transform: translateY(-100%);
    height:44px
  }
  .mobile-header.show {
    transform: translateY(0);
  }
  .mobile-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 44px;
  }
  .text-logo {
    font-family: 'Cormorant Infant', serif;
    font-weight: 600;
    font-size: 35px;
    line-height: 35px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color:#E5012B;
  }
  
  

  .mobile-logo {
    object-fit: contain;
  }
  .burger-menu {
    width: 44px;
    height: 44px;
    background-image: url('image/Menu.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffffcc;
    backdrop-filter: blur(5px);
    display: none;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 20px;
    z-index: 1000;
  }
  .mobile-menu-overlay.active {
    display: flex;
  }
  .mobile-menu-header {
    text-align: right;
  }
  .mobile-menu-close {
    width: 44px;
    height: 44px;
    cursor: pointer;
  }
  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .mobile-menu-nav a {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 13px;
    letter-spacing: 0%;
    color: #5D6883;
    text-decoration: none;
    margin-bottom: 30px;
  }
  .mobile-menu-footer {
    color: #5D6883;
  }
  .hero-buttons .hero-btn {
    margin: 5px 2px 0;
  }
  .mobile-menu-footer .menu-right{
    margin-top:20px;
  }
 
}
@media (max-width: 768px) {
  .hero-text-block h1{
    font-size: 35px;
    line-height: 35px;
  }
  .hero-logo{
    margin-top: 0px;
    margin-bottom: 10px;
  }
}
@media (max-width: 578px) {
 
  .extras-list {
    flex-direction: column;
  }
  .extras-list-column li{
    flex-direction: column;
    align-items: flex-start;
  }
  .extras-list-column .price {
    text-align: left;
  }
  .hero-btn:first-child{
    height: 40px;
  }
  .hero-btn{
    font-size: 18px;
  }
  .hero-btn:nth-child(2), .hero-btn:nth-child(3){
    height: 40px;
  }
  .hero-btn:nth-child(2) img{height: 18px;width: 18px;}
  .hero-btn:nth-child(3) img{height: 18px;width: 18px;}
  .hero-description{margin-top: 60px;}
  .hero .hero-buttons{margin-bottom: 20px;}
  .location-section h2 {
    font-size: 30px;
    line-height: 40px;
    margin-top:40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding:10px;
  }
  .programs h2 {
    font-size: 30px;
    line-height: 40px;
    margin-top:40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding:10px;
  }
  .extras h2{
    font-size: 30px;
    line-height: 40px;
    margin-top:40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding:10px;
  }
  .masters h2{
    font-size: 30px;
    line-height: 40px;
    margin-top:40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding:10px;
  }
  .kontakt h2{
    margin-top:40px;
    font-size: 14px;
    line-height: 14px;
    padding:10px;
  }
  .modal-content {
    flex-direction: column;
    gap: 10px;
  }
  #modalDescription{
    font-size: 11px;
  }
  #modalTime{
    margin-bottom: 15px;
  }
  .footer-columns-left{
    gap: 10px;
    flex-direction: column;
  }
  .footer-address {
    margin-top: 30px;
    text-align: left;
  }
  .footer .hero-buttons{
    justify-content: flex-start;
  }
  .hero {
    background-position-x: 60%;
  }
  .cards.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    position: relative;
  }
  .card img{
    width: 126px;
    height: 126px;
    
  }
  .card h3{
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 0px;
  }
  .card p:first-of-type{
    font-size: 13px;
    line-height: 30px;
    margin-bottom: 0px;
  }
  .card p:last-of-type{
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0px;
  }
  .cards.programs-grid .card button{
    width: 126px;
    height: 30px;
    font-size: 14px;
    margin-bottom: 0px;
  }
  .masters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .hero-buttons{
    gap:0px;
  }
  .kontakt .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 0;
  }
  .footer .hero-buttons{
    gap: 0;
  }
  
  
}
@media (max-width: 300px) {

}