.page-content {
  flex: 1;
  margin-top: 80px;
}

.page-hero {
  background: linear-gradient(135deg, #C2410C 0%, #EA580C 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/enjoy.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 20px;
  opacity: 0.95;
}

.content-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/enjoy.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.content-section .container {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-block {
  margin-bottom: 48px;
}

.content-block h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #C2410C 0%, #EA580C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-image-section {
  margin-bottom: 48px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-image-section img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.content-block p {
  font-size: 18px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.value-item {
  padding: 24px;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  border-radius: 8px;
  border-left: 4px solid;
  border-image: linear-gradient(135deg, #C2410C 0%, #EA580C 100%) 1;
  box-shadow: 0 2px 8px rgba(194, 65, 12, 0.1);
}

.value-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #C2410C 0%, #EA580C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-item p {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
}

@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 36px;
  }
  
  .content-block h2 {
    font-size: 28px;
  }
}
