.page-tintc {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main, #F2FFF6);
    background-color: var(--background-color, #08160F);
}

.page-tintc__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 40px;
    padding-top: 10px;
    box-sizing: border-box;
}

.page-tintc__hero-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

.page-tintc__hero-content {
    position: relative;
    text-align: center;
    padding: 20px;
    max-width: 900px;
    margin-top: 20px;
    box-sizing: border-box;
}

.page-tintc__main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-main, #F2FFF6);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-tintc__description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-tintc__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-main, #F2FFF6);
    text-align: center;
    margin-bottom: 30px;
    padding-top: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-tintc__section-intro {
    font-size: 1.1rem;
    color: var(--text-secondary, #A7D9B8);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    padding: 0 15px;
}

.page-tintc__cta-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: normal;
    word-wrap: break-word;
}

.page-tintc__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-tintc__cta-button--secondary {
    background: transparent;
    border: 2px solid var(--deep-green, #0A4B2C);
    color: var(--text-main, #F2FFF6);
    margin-left: 15px;
}

.page-tintc__cta-button--secondary:hover {
    background: var(--deep-green, #0A4B2C);
    color: #ffffff;
}

.page-tintc__latest-news-section,
.page-tintc__in-depth-section,
.page-tintc__categories-section,
.page-tintc__faq-section,
.page-tintc__cta-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

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

.page-tintc__news-card,
.page-tintc__category-card {
    background-color: var(--card-bg, #11271B);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--text-main, #F2FFF6);
    border: 1px solid var(--border-color, #2E7A4E);
}

.page-tintc__news-card:hover,
.page-tintc__category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-tintc__news-card img,
.page-tintc__category-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.page-tintc__card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-tintc__card-title,
.page-tintc__category-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-tintc__card-title a,
.page-tintc__category-title {
    color: var(--text-main, #F2FFF6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-tintc__card-title a:hover,
.page-tintc__category-card:hover .page-tintc__category-title {
    color: var(--glow-color, #57E38D);
}

.page-tintc__card-meta {
    font-size: 0.9rem;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 15px;
}

.page-tintc__card-excerpt,
.page-tintc__category-description {
    font-size: 1rem;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-tintc__read-more-button {
    display: inline-block;
    color: var(--glow-color, #57E38D);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    margin-top: auto;
}

.page-tintc__read-more-button:hover {
    color: var(--gold-color, #F2C14E);
}

.page-tintc__view-all {
    text-align: center;
    margin-top: 50px;
}

.page-tintc__article-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.page-tintc__article-item {
    background-color: var(--card-bg, #11271B);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 25px;
    border: 1px solid var(--border-color, #2E7A4E);
}

.page-tintc__article-item img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 25px;
    flex-shrink: 0;
}

.page-tintc__article-content {
    flex-grow: 1;
}

.page-tintc__article-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main, #F2FFF6);
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-tintc__article-meta {
    font-size: 0.9rem;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 15px;
}

.page-tintc__article-text {
    font-size: 1rem;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 20px;
}

.page-tintc__categories-grid a {
    text-decoration: none;
}

.page-tintc__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-tintc__faq-item {
    background-color: var(--card-bg, #11271B);
    border: 1px solid var(--divider-color, #1E3A2A);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-main, #F2FFF6);
}

.page-tintc__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
    color: var(--text-main, #F2FFF6);
}

.page-tintc__faq-question:hover {
    background-color: var(--deep-green, #0A4B2C);
}

.page-tintc__faq-item[open] .page-tintc__faq-question {
    background-color: var(--deep-green, #0A4B2C);
}

.page-tintc__faq-qtext {
    flex-grow: 1;
}

.page-tintc__faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 15px;
    color: var(--glow-color, #57E38D);
}

.page-tintc__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-tintc__faq-item summary {
    list-style: none;
}

.page-tintc__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: var(--text-secondary, #A7D9B8);
    line-height: 1.7;
}

.page-tintc__faq-answer p {
    margin-bottom: 10px;
}

.page-tintc__cta-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-tintc__cta-description {
    font-size: 1.1rem;
    color: var(--text-secondary, #A7D9B8);
    max-width: 800px;
    margin: 20px auto 40px auto;
}

.page-tintc__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}


@media (max-width: 1024px) {
    .page-tintc__hero-section img {
        max-height: 500px;
    }
    .page-tintc__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-tintc__description {
        font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    }
    .page-tintc__section-title {
        font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    }
    .page-tintc__article-item {
        flex-direction: column;
        align-items: center;
    }
    .page-tintc__article-item img {
        width: 100%;
        height: auto;
        max-width: 600px;
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-tintc__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }
    .page-tintc__hero-content {
        padding: 15px;
    }
    .page-tintc__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 10px;
    }
    .page-tintc__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-tintc__section-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 20px;
    }
    .page-tintc__section-intro {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    .page-tintc__cta-button {
        padding: 12px 20px;
        font-size: 1rem;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-tintc__cta-button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-tintc__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-tintc__latest-news-section,
    .page-tintc__in-depth-section,
    .page-tintc__categories-section,
    .page-tintc__faq-section,
    .page-tintc__cta-section {
        padding: 40px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-tintc__news-grid,
    .page-tintc__categories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-tintc__news-card img,
    .page-tintc__category-card img {
        height: auto;
        min-height: 200px;
    }

    .page-tintc__news-card,
    .page-tintc__category-card,
    .page-tintc__article-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-tintc__article-item {
        padding: 15px;
    }

    .page-tintc__article-item img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin-bottom: 15px;
    }

    .page-tintc__article-title {
        font-size: 1.2rem;
    }

    .page-tintc__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .page-tintc__faq-answer {
        padding: 0 20px 15px 20px;
    }

    .page-tintc img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-tintc__section,
    .page-tintc__card,
    .page-tintc__container,
    .page-tintc__news-card,
    .page-tintc__category-card,
    .page-tintc__article-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-tintc__hero-section,
    .page-tintc__latest-news-section,
    .page-tintc__in-depth-section,
    .page-tintc__categories-section,
    .page-tintc__faq-section,
    .page-tintc__cta-section {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-tintc__hero-section {
        padding-top: 10px !important;
    }
}

.page-tintc {
    color: #F2FFF6;
    background-color: #08160F;
}

.page-tintc__card,
.page-tintc__article-item,
.page-tintc__faq-item {
    background-color: #11271B;
    color: #F2FFF6;
    border: 1px solid #2E7A4E;
}

.page-tintc__cta-button {
    color: #ffffff;
}

.page-tintc__cta-button--secondary {
    color: #F2FFF6;
    border-color: #2E7A4E;
}

.page-tintc__cta-button--secondary:hover {
    background: #0A4B2C;
    color: #ffffff;
}

.page-tintc__card-meta,
.page-tintc__card-excerpt,
.page-tintc__article-meta,
.page-tintc__article-text,
.page-tintc__category-description,
.page-tintc__faq-answer p,
.page-tintc__section-intro,
.page-tintc__cta-description {
    color: #A7D9B8;
}

.page-tintc__read-more-button {
    color: #57E38D;
}
.page-tintc__read-more-button:hover {
    color: #F2C14E;
}

.page-tintc__faq-toggle {
    color: #57E38D;
}
.page-tintc__faq-question:hover,
.page-tintc__faq-item[open] .page-tintc__faq-question {
    background-color: #0A4B2C;
}