/* style/about.css */
.page-about {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-about .section-title {
  font-size: 2.8em;
  color: #1A202C;
  text-align: center;
  margin-bottom: 50px;
  padding-top: 40px;
  font-weight: 700;
  position: relative;
}

.page-about .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-about .text-content {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-about .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #1A202C;
  overflow: hidden;
}

.page-about .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.page-about .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-about .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-about .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-about .hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.page-about .hero-description {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700;
  color: #1A202C;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-about .cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Section Intro */
.page-about .section-intro {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Section History */
.page-about .section-history {
  padding: 80px 0;
  background-color: #f2f2f2;
}

.page-about .content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-about .content-grid.reversed {
  flex-direction: row-reverse;
}

.page-about .text-column {
  flex: 1;
}

.page-about .image-column {
  flex: 1;
  min-width: 400px; /* Ensure image column has enough space */
}

.page-about .image-column img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Section Why Choose */
.page-about .section-why-choose {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-about .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-about .feature-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-about .feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-about .feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-about .feature-title {
  font-size: 1.6em;
  color: #1A202C;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-about .feature-description {
  font-size: 1em;
  color: #555555;
}

/* Section Values */
.page-about .section-values {
  padding: 80px 0;
  background-color: #1A202C;
  color: #E0E0E0;
}

.page-about .section-values .section-title {
  color: #FFD700;
}

.page-about .section-values .text-content {
  color: #CCCCCC;
}

.page-about .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-about .value-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-about .value-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-about .value-description {
  font-size: 1.05em;
  color: #CCCCCC;
}

/* Section Responsible Gambling */
.page-about .section-responsible-gambling {
  padding: 80px 0;
  background-color: #f8f8f8;
}

/* Section Vision */
.page-about .section-vision {
  padding: 80px 0 100px;
  background-color: #ffffff;
  text-align: center;
}

.page-about .section-vision .cta-button {
  margin-top: 50px;
}

.page-about .primary-button {
  background: #FFD700;
  color: #1A202C;
}

.page-about .primary-button:hover {
  background: #e6c200;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about .hero-title {
    font-size: 2.8em;
  }
  .page-about .hero-description {
    font-size: 1.1em;
  }
  .page-about .section-title {
    font-size: 2.2em;
  }
  .page-about .content-grid {
    flex-direction: column;
  }
  .page-about .content-grid.reversed {
    flex-direction: column;
  }
  .page-about .image-column {
    min-width: unset;
  }
  .page-about .feature-item, .page-about .value-item {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-about .hero-section {
    padding: 40px 15px;
  }
  .page-about .hero-image img {
    border-radius: 8px;
  }
  .page-about .hero-title {
    font-size: 2.2em;
  }
  .page-about .hero-description {
    font-size: 1em;
  }
  .page-about .cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }
  .page-about .section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 20px;
  }
  .page-about .section-title::after {
    width: 60px;
    height: 3px;
    margin-top: 10px;
  }
  .page-about .text-content {
    font-size: 1em;
  }
  .page-about .section-intro, .page-about .section-history, .page-about .section-why-choose, .page-about .section-values, .page-about .section-responsible-gambling, .page-about .section-vision {
    padding: 50px 0;
  }
  .page-about .feature-icon {
    width: 80px;
    height: 80px;
  }
  .page-about .feature-title {
    font-size: 1.4em;
  }
  .page-about .value-title {
    font-size: 1.6em;
  }
}

@media (max-width: 480px) {
  .page-about .hero-title {
    font-size: 1.8em;
  }
  .page-about .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about .section-title {
    font-size: 1.5em;
  }
  .page-about .features-grid, .page-about .values-grid {
    grid-template-columns: 1fr;
  }
}