.page-about {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark body background */
    background-color: var(--secondary-color); /* Inherit from shared, which is #1A1A1A */
}

/* Hero Section */
.page-about__hero-section {
    position: relative;
    padding-top: 0; /* Assumes shared.css provides padding-top to body */
    padding-bottom: 60px;
    background: linear-gradient(135deg, #1A1A1A, #000000); /* Darker gradient for hero */
    overflow: hidden;
}

.page-about__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.page-about__hero-content {
    color: #ffffff;
}

.page-about__main-title {
    font-size: 3.2em;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-about__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-about__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-about__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Ensure long words break */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    max-width: 100%; /* Ensure button doesn't exceed container width */
}

.page-about__btn--primary {
    background-color: #FFD700;
    color: #1A1A1A;
    border: 2px solid #FFD700;
}

.page-about__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-about__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A1A1A;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

/* General Section Styling */
.page-about__section--dark {
    background-color: #1A1A1A;
    color: #f0f0f0;
    padding: 80px 0;
}

.page-about__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

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

.page-about__sub-title {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 600;
}

.page-about__sub-title--centered {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    color: #FFD700;
    font-size: 2em;
}

.page-about__text-block p {
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.7;
    color: #e0e0e0;
}

/* Mission & Vision Section */
.page-about__mission-vision-section {
    padding: 80px 0;
    background-color: #1A1A1A;
    color: #f0f0f0;
}

.page-about__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

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

.page-about__value-card {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-about__value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-about__value-card img {
    
    
    object-fit: contain;
    margin-bottom: 20px;
}

.page-about__value-card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-about__value-card p {
    font-size: 0.95em;
    color: #c0c0c0;
}

/* History Section */
.page-about__history-section {
    padding: 80px 0;
    background-color: #1A1A1A;
    color: #f0f0f0;
}

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

.page-about__history-image {
    width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Why Choose Section */
.page-about__why-choose-section {
    padding: 80px 0;
    background-color: #0d0d0d; /* Slightly darker background */
    color: #f0f0f0;
}

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

.page-about__advantage-card {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-about__advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-about__advantage-card img {
    
    
    object-fit: contain;
    margin-bottom: 20px;
}

.page-about__advantage-card-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Responsible Gaming Section */
.page-about__responsible-gaming-section {
    padding: 80px 0;
    background-color: #1A1A1A;
    color: #f0f0f0;
}

.page-about__content-flex {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-about__responsive-image {
    width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Team Section */
.page-about__team-section {
    padding: 80px 0;
    background-color: #0d0d0d;
    color: #f0f0f0;
}

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

.page-about__team-member-card {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-about__team-member-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #FFD700;
}

.page-about__team-member-name {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-about__team-member-role {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 15px;
}

.page-about__team-member-description {
    font-size: 0.95em;
    color: #c0c0c0;
}

.page-about__team-closing-text {
    text-align: center;
    font-size: 1.1em;
    margin-top: 50px;
    color: #e0e0e0;
}

/* FAQ Section */
.page-about__faq-section {
    padding: 80px 0;
    background-color: #1A1A1A;
    color: #f0f0f0;
}

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

.page-about__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #2a2a2a; /* Darker background for question */
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-about__faq-question:hover {
    background: #3a3a3a;
    border-color: #FFD700;
}

.page-about__faq-question:active {
    background: #4a4a4a;
}

.page-about__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: #FFD700; /* Gold for FAQ question */
}

.page-about__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #FFD700;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-about__faq-item.active .page-about__faq-toggle {
    color: #ffffff;
    transform: rotate(45deg); /* Rotate for minus sign */
}

.page-about__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 15px;
    opacity: 0;
    background: #2a2a2a;
    border-radius: 0 0 5px 5px;
    color: #c0c0c0;
}

.page-about__faq-item.active .page-about__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-top: none;
}

.page-about__faq-answer p {
    margin: 0;
    font-size: 0.95em;
    line-height: 1.6;
}

/* Bottom CTA Section */
.page-about__cta-bottom-section {
    padding: 60px 0;
    background-color: #FFD700; /* Gold background for strong CTA */
    color: #1A1A1A; /* Dark text for gold background */
    text-align: center;
}

.page-about__cta-bottom-container {
    max-width: 900px;
}

.page-about__cta-bottom-title {
    font-size: 2.2em;
    color: #1A1A1A;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-about__cta-bottom-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #333333;
}

.page-about__cta-bottom-section .page-about__btn--primary {
    background-color: #1A1A1A;
    color: #FFD700;
    border-color: #1A1A1A;
}
}