:root {
    /* Base Colors */
    --color-primary: #11A84E; /* Main Green */
    --color-secondary: #22C768; /* Auxiliary Green */

    /* Custom Palette */
    --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --bg-card-dark: #11271B; /* Card Background */
    --bg-primary-dark: #08160F; /* Main Background */
    --text-main-light: #F2FFF6; /* Main Text */
    --text-secondary-light: #A7D9B8; /* Secondary Text */
    --border-color: #2E7A4E; /* Border */
    --glow-color: #57E38D; /* Glow */
    --gold-color: #F2C14E; /* Gold */
    --divider-color: #1E3A2A; /* Divider */
    --deep-green: #0A4B2C; /* Deep Green */

    /* Generic Dark/Light Text for Contrast */
    --text-dark: #333333;
    --text-light: #ffffff;
}

/* Ensure body padding-top is handled by shared.css */
/* Main content area will use its own background color from the custom palette */
.page-tintc {
    background-color: var(--bg-primary-dark); /* Dark background for the main page content */
    color: var(--text-main-light); /* Light text for dark background */
    font-family: 'Arial', sans-serif; /* Example font */
    line-height: 1.6;
}

/* Hero Section */
.page-tintc__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding as body handles --header-offset */
    padding-bottom: 60px;
    background-color: var(--bg-primary-dark); /* Ensure consistent dark background */
    overflow: hidden;
}

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

.page-tintc__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Slightly dim the background image */
}

.page-tintc__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    color: var(--text-main-light);
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    border-radius: 10px;
}

.page-tintc__main-title {
    font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
    font-weight: bold;
    color: var(--gold-color);
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.6);
}

.page-tintc__hero-description {
    font-size: 1.2em;
    color: var(--text-secondary-light);
    margin-bottom: 30px;
}

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

.page-tintc__btn-primary,
.page-tintc__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-tintc__btn-primary {
    background: var(--btn-gradient);
    color: var(--text-light);
}

.page-tintc__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-tintc__btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.page-tintc__btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-tintc__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-tintc__section-title {
    font-size: clamp(1.8em, 4vw, 2.8em);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-tintc__section-description {
    font-size: 1.1em;
    color: var(--text-secondary-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* News Updates Section */
.page-tintc__news-updates-section {
    background-color: var(--bg-primary-dark);
    padding: 60px 0;
}

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

.page-tintc__news-card {
    background-color: var(--bg-card-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.page-tintc__news-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

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

.page-tintc__news-card-date {
    display: block;
    font-size: 0.9em;
    color: var(--text-secondary-light);
    margin-bottom: 10px;
}

.page-tintc__news-card-title {
    font-size: 1.3em;
    margin-bottom: 15px;
    line-height: 1.4;
}

.page-tintc__news-card-title a {
    color: var(--text-main-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-tintc__news-card-title a:hover {
    color: var(--gold-color);
}

.page-tintc__news-card-excerpt {
    font-size: 1em;
    color: var(--text-secondary-light);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-tintc__news-card-link {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-tintc__news-card-link:hover {
    color: var(--gold-color);
    text-decoration: underline;
}

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

/* Commitment Section */
.page-tintc__commitment-section {
    background-color: var(--deep-green); /* Use a slightly different dark green */
    padding: 80px 0;
}

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

.page-tintc__feature-item {
    background-color: var(--bg-card-dark);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-tintc__feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-tintc__feature-title {
    font-size: 1.4em;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.page-tintc__feature-text {
    font-size: 1em;
    color: var(--text-secondary-light);
}

/* CTA Register Section */
.page-tintc__cta-register-section {
    background-color: var(--bg-primary-dark);
    padding: 80px 0;
}

.page-tintc__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-tintc__step-item {
    background-color: var(--bg-card-dark);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-tintc__step-title {
    font-size: 1.3em;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.page-tintc__step-text {
    font-size: 1em;
    color: var(--text-secondary-light);
}

.page-tintc__cta-buttons--center {
    margin-top: 40px;
}

/* FAQ Section */
.page-tintc__faq-section {
    background-color: var(--deep-green);
    padding: 80px 0;
}

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

.page-tintc__faq-item {
    background-color: var(--bg-card-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-tintc__faq-item summary {
    list-style: none; /* Hide default marker */
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: var(--text-main-light);
    background-color: var(--bg-card-dark);
    border-bottom: 1px solid var(--divider-color);
}

.page-tintc__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-tintc__faq-qtext {
    flex-grow: 1;
    font-size: 1.1em;
    color: var(--text-main-light);
}

.page-tintc__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--color-secondary);
    margin-left: 15px;
}

.page-tintc__faq-item[open] .page-tintc__faq-toggle {
    content: "−";
}

.page-tintc__faq-answer {
    padding: 20px;
    font-size: 1em;
    color: var(--text-secondary-light);
    background-color: rgba(17, 39, 27, 0.7); /* Slightly lighter dark background for answer */
    border-top: 1px solid var(--divider-color);
}

/* Conclusion Section */
.page-tintc__conclusion-section {
    background-color: var(--bg-primary-dark);
    padding: 60px 0 80px 0;
    text-align: center;
}

.page-tintc__btn-primary--large {
    padding: 18px 40px;
    font-size: 1.2em;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-tintc__hero-content {
        padding: 15px;
    }
    .page-tintc__main-title {
        font-size: clamp(1.8em, 4.5vw, 3em);
    }
    .page-tintc__hero-description {
        font-size: 1.1em;
    }
    .page-tintc__news-grid,
    .page-tintc__features-grid,
    .page-tintc__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-tintc {
        font-size: 15px;
    }
    .page-tintc__hero-section {
        padding-bottom: 40px;
    }
    .page-tintc__hero-content {
        max-width: 100%;
        padding: 15px;
    }
    .page-tintc__main-title {
        font-size: clamp(1.5em, 6vw, 2.5em);
    }
    .page-tintc__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-tintc__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px; /* Constrain button width */
        margin: 0 auto;
    }
    .page-tintc__btn-primary,
    .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;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-tintc__container {
        padding: 20px 15px;
    }
    .page-tintc__section-title {
        font-size: clamp(1.5em, 5vw, 2em);
        margin-bottom: 15px;
    }
    .page-tintc__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-tintc__news-grid,
    .page-tintc__features-grid,
    .page-tintc__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-tintc__news-card-image {
        height: 180px;
    }
    .page-tintc__news-card-title {
        font-size: 1.1em;
    }
    .page-tintc__feature-item,
    .page-tintc__step-item {
        padding: 20px;
    }
    .page-tintc__feature-title,
    .page-tintc__step-title {
        font-size: 1.2em;
    }
    .page-tintc__faq-item summary {
        padding: 15px;
    }
    .page-tintc__faq-qtext {
        font-size: 1em;
    }
    .page-tintc__faq-answer {
        padding: 15px;
    }

    /* Image responsive handling */
    .page-tintc img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-tintc__section,
    .page-tintc__card,
    .page-tintc__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-tintc__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-tintc__video-section {
        padding-top: 10px !important;
    }
    /* Ensure content area images are not tiny - mobile override */
    .page-tintc__news-card-image,
    .page-tintc__feature-icon {
        min-width: unset;
        min-height: unset;
        width: 100% !important; /* Ensure they fill container on mobile */
        height: auto !important;
    }
}