.page-index-about-tha-kubet {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: var(--background-color, #ffffff); /* Inherit or default to white */
}

/* Hero Section */
.page-index-about-tha-kubet__hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-index-about-tha-kubet__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* No filter to change image color */
}

.page-index-about-tha-kubet__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-index-about-tha-kubet__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-index-about-tha-kubet__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.page-index-about-tha-kubet__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-index-about-tha-kubet__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* General Buttons */
.page-index-about-tha-kubet__btn-primary,
.page-index-about-tha-kubet__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-index-about-tha-kubet__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-index-about-tha-kubet__btn-primary:hover {
    background-color: #1e87c2;
    border-color: #1e87c2;
    transform: translateY(-2px);
}

.page-index-about-tha-kubet__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-index-about-tha-kubet__btn-secondary:hover {
    background-color: #ffffff;
    color: #26A9E0;
    transform: translateY(-2px);
}

/* Login specific button style (if used directly, otherwise use primary/secondary) */
.page-index-about-tha-kubet__btn-login {
    background-color: #EA7C07;
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-index-about-tha-kubet__btn-login:hover {
    background-color: #c96806;
    border-color: #c96806;
    transform: translateY(-2px);
}


/* Content Area & Sections */
.page-index-about-tha-kubet__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-index-about-tha-kubet__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 20px;
}

.page-index-about-tha-kubet__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555555;
}

.page-index-about-tha-kubet__grid-container {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.page-index-about-tha-kubet__grid-container:nth-child(even) {
    flex-direction: row-reverse;
}

.page-index-about-tha-kubet__text-content {
    flex: 1;
}

.page-index-about-tha-kubet__text-content p {
    margin-bottom: 15px;
    color: #333333; /* Ensure contrast on light background */
}

.page-index-about-tha-kubet__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-index-about-tha-kubet__image-content {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* No filter to change image color */
}

/* Dark Section Styling */
.page-index-about-tha-kubet__dark-section {
    background-color: #26A9E0;
    color: #ffffff; /* White text on brand primary color */
    padding: 80px 20px;
}

.page-index-about-tha-kubet__dark-section .page-index-about-tha-kubet__section-title,
.page-index-about-tha-kubet__dark-section .page-index-about-tha-kubet__section-description {
    color: #ffffff;
}