.page-the-thao {
    color: #333333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-the-thao__hero-section {
    padding-top: 10px; /* Small top padding for fixed header */
    padding-bottom: 60px;
    background-color: #FFFFFF;
}

.page-the-thao__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 20px 15px;
}

.page-the-thao__hero-content {
    flex: 1;
    min-width: 300px;
}

.page-the-thao__main-title {
    font-size: 3.2em;
    font-weight: 700;
    color: #017439;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-the-thao__hero-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
}

.page-the-thao__cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-the-thao__cta-buttons--center {
    justify-content: center;
    margin-top: 40px;
}

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-the-thao__btn-primary {
    background-color: #C30808;
    color: #FFFF00;
    border: 2px solid #C30808;
}

.page-the-thao__btn-primary:hover {
    background-color: #a30606;
    border-color: #a30606;
}

.page-the-thao__btn-secondary {
    background-color: transparent;
    color: #017439;
    border: 2px solid #017439;
}

.page-the-thao__btn-secondary:hover {
    background-color: #017439;
    color: #FFFFFF;
}

.page-the-thao__hero-image {
    flex: 1;
    min-width: 400px;
    text-align: center;
}

.page-the-thao__hero-side-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-the-thao__section-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #017439;
}

.page-the-thao__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
}

.page-the-thao__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 15px;
}

.page-the-thao__intro-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.page-the-thao__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-the-thao__icon-box-media {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #017439;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-the-thao__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.page-the-thao__feature-title {
    font-size: 1.5em;
    color: #017439;
    margin-bottom: 15px;
}

.page-the-thao__feature-description {
    color: #666;
}

.page-the-thao__categories-section {
    padding: 60px 0;
    background-color: #017439;
    color: #FFFFFF;
}

.page-the-thao__categories-section .page-the-thao__section-title,
.page-the-thao__categories-section .page-the-thao__section-description {
    color: #FFFFFF;
}

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

.page-the-thao__category-card {
    background-color: #ffffff;
    color: #333333;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.page-the-thao__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-the-thao__card-title {
    font-size: 1.4em;
    color: #017439;
    padding: 20px 20px 10px;
}

.page-the-thao__card-text {
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-the-thao__guide-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.page-the-thao__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-the-thao__guide-step {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-the-thao__step-icon {
    width: 60px;
    height: 60px;
    background-color: #017439;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: 700;
    margin: 0 auto 20px;
}

.page-the-thao__step-title {
    font-size: 1.4em;
    color: #017439;
    margin-bottom: 10px;
}

.page-the-thao__step-description {
    color: #666;
}

.page-the-thao__faq-section {
    padding: 60px 0;
    background-color: #017439;
    color: #FFFFFF;
}

.page-the-thao__faq-section .page-the-thao__section-title {
    color: #FFFFFF;
}

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

.page-the-thao__faq-item {
    background-color: #ffffff;
    color: #333333;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-the-thao__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    background-color: #f0f0f0;
    color: #017439;
    list-style: none;
}

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

.page-the-thao__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-the-thao__faq-item[open] .page-the-thao__faq-toggle {
    transform: rotate(45deg);
}

.page-the-thao__faq-answer {
    padding: 15px 20px 20px;
    border-top: 1px solid #eee;
    color: #555;
}

.page-the-thao__cta-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.page-the-thao__cta-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-the-thao img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .page-the-thao__main-title {
        font-size: 2.8em;
    }
    .page-the-thao__hero-container {
        gap: 30px;
    }
    .page-the-thao__section-title {
        font-size: 2em;
    }
    .page-the-thao__icon-box-media {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .page-the-thao {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-the-thao__content-area,
    .page-the-thao__hero-container,
    .page-the-thao__cta-buttons,
    .page-the-thao__button-group,
    .page-the-thao__btn-container,
    .page-the-thao__hero-section,
    .page-the-thao__intro-section,
    .page-the-thao__categories-section,
    .page-the-thao__guide-section,
    .page-the-thao__faq-section,
    .page-the-thao__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .page-the-thao__hero-section {
        padding-top: 10px !important;
    }
    .page-the-thao__hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .page-the-thao__hero-content {
        order: 2;
        padding-bottom: 20px;
    }
    .page-the-thao__hero-image {
        order: 1;
        min-width: unset;
        width: 100%;
        margin-bottom: 20px;
    }
    .page-the-thao__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-the-thao__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-the-thao__cta-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    .page-the-thao__btn-primary,
    .page-the-thao__btn-secondary,
    .page-the-thao a[class*="button"],
    .page-the-thao a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 15px !important;
    }

    .page-the-thao__features-grid {
        grid-template-columns: 1fr;
    }
    .page-the-thao__icon-box-media {
        width: 150px;
        height: 150px;
        border-width: 3px;
    }

    .page-the-thao__category-grid {
        grid-template-columns: 1fr;
    }
    .page-the-thao__card-image {
        height: 180px;
    }

    .page-the-thao__guide-steps {
        grid-template-columns: 1fr;
    }
    .page-the-thao__step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5em;
    }

    .page-the-thao__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-the-thao__faq-answer {
        padding: 10px 15px 15px;
        font-size: 0.95em;
    }

    .page-the-thao img:not(.page-the-thao__icon-box-media img) {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-the-thao__icon-box-media img {
        height: 100% !important;
        object-fit: cover !important;
    }

    .page-the-thao__section-title {
        font-size: 1.8em;
    }
    .page-the-thao__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
}