* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}

.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  background: #ffffff;
}

.page-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: #6a2ca0;
  margin-bottom: 30px;
}


.header-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
}


.header-text h1,
.header-text h2 {
  margin: 0;
  color: white;
  font-weight: 700;
}

.header-text h1 {
  font-size: 26px;
  margin-bottom: 5px;
}

.header-text h2 {
  font-size: 22px;
  line-height: 1.2;
  text-transform: uppercase;
}


.feature {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-image {
  width: 40%;
  object-fit: cover;
}

.feature-text {
  width: 60%;
  font-size: 14px;
  line-height: 1.5;
}

.hero {
  position: relative;
  margin-bottom: 30px;
}

.hero-image {
  width: 100%;
  display: block;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 0;
  left: 0;

 
  width: 35%;
  height: 100%;

  
  background: rgba(0, 0, 0, 0.55);

  
  padding: 20px;

 
  color: white;
  font-size: 14px;
  line-height: 1.5;

  
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}


.hero-row {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-row img {
  width: 25%;
  object-fit: cover;
  display: block;
}

.bottom-section {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: start;
}

.bottom-column {
  font-size: 14px;
  line-height: 1.5;
}

.bottom-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.piano-image {
  max-width: 180px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature {
    flex-direction: column;
  }

  .feature-image,
  .feature-text {
    width: 100%;
  }

  .hero-text {
    position: static;
    background: #000;
    margin-top: 10px;
  }

  .hero-row {
    flex-wrap: wrap;
  }

  .hero-row img {
    width: 48%;
  }

  .bottom-section {
    grid-template-columns: 1fr;
  }

  .bottom-image-wrapper {
    order: -1;
  }
}

