:root {
  --primary-color: #113B7A;
  --secondary-color: #1D5FD1;
  --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  --card-bg: #10233F;
  --text-main: #F3F8FF;
  --text-secondary: #AFC4E8;
  --border-color: #244D84;
  --glow-color: #4FA8FF;
  --gold-color: #F2C14E;
  --divider-color: #1B3357;
  --deep-navy: #08162B;
}

.page-about {
  font-family: Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--deep-navy);
}

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 40px;
  text-align: center;
  position: relative;
  background-color: var(--deep-navy);
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-height: 200px;
}

.page-about__hero-content {
  max-width: 900px;
  width: 100%;
  z-index: 2;
  position: relative;
}

.page-about__main-title {
  font-size: 2.8em;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gold-color);
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-about__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-about__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.page-about__btn-primary,
.page-about__btn-secondary,
.page-about__btn-small,
.page-about__btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1.05em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-about__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: 2px solid var(--glow-color);
  box-shadow: 0 0 15px rgba(79, 168, 255, 0.5);
}

.page-about__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(79, 168, 255, 0.8);
}

.page-about__btn-secondary {
  background: transparent;
  color: var(--glow-color);
  border: 2px solid var(--glow-color);
}

.page-about__btn-secondary:hover {
  background: rgba(79, 168, 255, 0.1);
  transform: translateY(-3px);
  color: var(--text-main);
}

.page-about__btn-small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-about__btn-large {
  padding: 15px 35px;
  font-size: 1.2em;
  min-width: 250px;
}

.page-about__section-title {
  font-size: 2.2em;
  font-weight: bold;
  color: var(--gold-color);
  text-align: center;
  margin: 60px 0 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-about__mission-section,
.page-about__values-section,
.page-about__why-choose-section,
.page-about__responsible-gaming-section,
.page-about__faq-section,
.page-about__cta-bottom-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto 30px;
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-about__mission-content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.page-about__mission-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  min-height: 200px;
}

.page-about__mission-text {
  flex: 1;
  color: var(--text-secondary);
  line-height: 1.7;
}

.page-about__mission-text p {
  margin-bottom: 15px;
}

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

.page-about__value-card {
  background-color: var(--deep-navy);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-about__value-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  min-height: 200px;
  object-fit: contain;
}

.page-about__value-title {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--glow-color);
  margin-bottom: 15px;
}

.page-about__value-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.page-about__why-choose-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-about__why-choose-item {
  background-color: var(--deep-navy);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  line-height: 1.6;
}

.page-about__why-choose-title {
  font-size: 1.4em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__responsible-gaming-content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.page-about__responsible-gaming-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  min-height: 200px;
}

.page-about__responsible-gaming-text {
  flex: 1;
  color: var(--text-secondary);
  line-height: 1.7;
}

.page-about__responsible-gaming-text p {
  margin-bottom: 15px;
}

.page-about__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-about__faq-item {
  background-color: var(--deep-navy);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--glow-color);
  cursor: pointer;
  background-color: var(--primary-color);
  border-bottom: 1px solid var(--border-color);
  list-style: none;
}

.page-about__faq-question::-webkit-details-marker {
  display: none;
}

.page-about__faq-question::marker {
  display: none;
}

.page-about__faq-qtext {
  flex: 1;
}
}