/* style/tintc.css */
.page-tintc {
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px;
}

.page-tintc__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-tintc__section {
    padding: 40px 0;
}

.page-tintc__intro-text p {
    color: #A7D9B8; /* Text Secondary */
    font-size: 1.05em;
    margin-bottom: 15px;
    text-align: justify;
}

.page-tintc__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
    overflow: hidden; /* Ensure no overflow from image */
}

.page-tintc__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.page-tintc__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.3; /* Slightly dim the background image for text readability */
}

.page-tintc__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    background: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #2E7A4E; /* Border */
}

.page-tintc__hero-title {
    font-size: 3.2em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-tintc__hero-description {
    font-size: 1.2em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-tintc__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6; /* Text Main for button text */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-tintc__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.page-tintc__section-title {
    font-size: 2.5em;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.3); /* Glow */
}

.page-tintc__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #2AD16F; /* Main color */
    border-radius: 2px;
}

.page-tintc__section-description {
    text-align: center;
    color: #A7D9B8; /* Text Secondary */
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

.page-tintc__news-card {
    background-color: #11271B; /* Card BG */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2E7A4E; /* Border */
}

.page-tintc__news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-tintc__news-thumbnail {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #2E7A4E; /* Border */
}

.page-tintc__news-content {
    padding: 20px;
}

.page-tintc__news-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-tintc__news-title a {
    color: #F2FFF6; /* Text Main */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-tintc__news-title a:hover {
    color: #57E38D; /* Glow */
}

.page-tintc__news-meta {
    font-size: 0.9em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 15px;
}

.page-tintc__news-summary {
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
}

.page-tintc__read-more {
    display: inline-block;
    color: #2AD16F; /* Main color */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-tintc__read-more:hover {
    color: #57E38D; /* Glow */
    text-decoration: underline;
}

.page-tintc__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-tintc__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    background: transparent;
    color: #2AD16F; /* Main color */
    border: 2px solid #2AD16F; /* Main color */
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-tintc__btn-secondary:hover {
    background: #2AD16F; /* Main color */
    color: #08160F; /* Background */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-tintc__cta-banner {
    text-align: center;
    padding: 80px 20px;
    background-color: #0A4B2C; /* Deep Green */
    border-top: 1px solid #2E7A4E; /* Border */
    border-bottom: 1px solid #2E7A4E; /* Border */
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.page-tintc__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-tintc__cta-title {
    font-size: 2.8em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    text-shadow: 0 0 12px rgba(87, 227, 141, 0.6); /* Glow */
}

.page-tintc__cta-description {
    font-size: 1.15em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 40px;
}

.page-tintc__in-depth-analysis {
    background-color: #11271B; /* Card BG */
    padding: 60px 0;
    border-bottom: 1px solid #2E7A4E; /* Border */
}

.page-tintc__sub-section-title {
    font-size: 2em;
    color: #F2FFF6; /* Text Main */
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 5px rgba(87, 227, 141, 0.2); /* Glow */
}

.page-tintc__in-depth-analysis p {
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    font-size: 1.05em;
    text-align: justify;
}

.page-tintc__in-depth-analysis .page-tintc__btn-primary {
    margin-top: 30px;
}

.page-tintc__faq-section {
    padding: 60px 0;
}

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

.page-tintc__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.page-tintc__faq-item[open] {
    background-color: #0A4B2C; /* Deep Green */
}

.page-tintc__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    color: #F2FFF6; /* Text Main */
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    list-style: none; /* Remove default marker */
}

.page-tintc__faq-question::-webkit-details-marker {
    display: none; /* Remove default marker for Webkit */
}

.page-tintc__faq-question:hover {
    color: #57E38D; /* Glow */
}

.page-tintc__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #2AD16F; /* Main color */
}

.page-tintc__faq-item[open] .page-tintc__faq-toggle {
    color: #F2FFF6; /* Text Main */
}

.page-tintc__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-tintc__hero-title {
        font-size: 2.8em;
    }
    .page-tintc__section-title {
        font-size: 2.2em;
    }
    .page-tintc__cta-title {
        font-size: 2.5em;
    }
    .page-tintc__news-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-tintc__container {
        padding: 0 15px;
    }
    .page-tintc__section {
        padding: 30px 0;
    }
    .page-tintc__hero-section {
        padding-bottom: 40px;
    }
    .page-tintc__hero-content {
        padding: 40px 15px;
    }
    .page-tintc__hero-title {
        font-size: clamp(2em, 8vw, 2.5em); /* Responsive font size */
    }
    .page-tintc__hero-description {
        font-size: 1.1em;
    }
    .page-tintc__btn-primary {
        padding: 12px 25px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-tintc__section-title {
        font-size: clamp(1.8em, 7vw, 2em);
        margin-bottom: 20px;
    }
    .page-tintc__section-title::after {
        width: 60px;
    }
    .page-tintc__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-tintc__news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .page-tintc__news-thumbnail {
        height: 200px;
    }
    .page-tintc__news-title {
        font-size: 1.2em;
    }
    .page-tintc__cta-banner {
        padding: 60px 15px;
    }
    .page-tintc__cta-title {
        font-size: clamp(2em, 8vw, 2.2em);
    }
    .page-tintc__cta-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-tintc__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-tintc__sub-section-title {
        font-size: 1.8em;
    }
    .page-tintc__in-depth-analysis p {
        font-size: 1em;
    }
    .page-tintc__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-tintc__faq-answer {
        padding: 0 15px 15px 15px;
    }

    /* All images responsive */
    .page-tintc img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* All containing elements for images/buttons/videos responsive */
    .page-tintc__section,
    .page-tintc__card,
    .page-tintc__container,
    .page-tintc__hero-content,
    .page-tintc__cta-content,
    .page-tintc__news-card,
    .page-tintc__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        /* For sections and containers, padding is applied directly or via container */
        /* padding-left: 15px; */
        /* padding-right: 15px; */
    }
    .page-tintc__intro-text .page-tintc__container,
    .page-tintc__recent-news .page-tintc__container,
    .page-tintc__in-depth-analysis .page-tintc__container,
    .page-tintc__faq-section .page-tintc__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Specific overrides for padding if needed, but general container should handle it */
    .page-tintc__hero-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .page-tintc__cta-banner {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Ensure button groups wrap */
    .page-tintc__cta-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}
@media (max-width: 480px) {
    .page-tintc__hero-title {
        font-size: clamp(1.8em, 9vw, 2.2em);
    }
    .page-tintc__section-title {
        font-size: clamp(1.6em, 8vw, 1.8em);
    }
    .page-tintc__cta-title {
        font-size: clamp(1.8em, 9vw, 2em);
    }
    .page-tintc__news-thumbnail {
        height: 180px;
    }
}

/* Ensure no image filters */
.page-tintc img {
    filter: none;
}