:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-color: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

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

.page-tintc p {
    margin-bottom: 1em;
}

.page-tintc a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-tintc a:hover {
    text-decoration: underline;
}

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

/* Hero Section */
.page-tintc__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* body handles top padding, add minimal here */
    overflow: hidden;
}

.page-tintc__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-tintc__hero-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -100px; /* Adjust to visually bring content closer to image */
    z-index: 1;
    background-color: rgba(17, 39, 27, 0.85); /* Card BG with transparency for subtle overlay effect on hero content area */
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    position: relative;
}

.page-tintc__main-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--gold-color);
    margin-bottom: 0.5em;
    font-weight: 700;
    line-height: 1.2;
}

.page-tintc__hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-main);
    margin-bottom: 1.5em;
}

.page-tintc__btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--button-gradient);
    color: #ffffff; /* Explicitly white for contrast */
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-tintc__btn-primary--dark-text {
    color: var(--deep-green) !important; /* For gold background */
}

/* Section Titles and Descriptions */
.page-tintc__section-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 0.8em;
    padding-top: 40px;
}

.page-tintc__section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Latest News Section */
.page-tintc__latest-news-section {
    padding: 60px 0;
    background-color: var(--background-color);
}

.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(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-tintc__news-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.page-tintc__news-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.page-tintc__news-card:hover .page-tintc__news-thumbnail {
    transform: scale(1.05);
}

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

.page-tintc__news-title {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 0.5em;
    line-height: 1.3;
}

.page-tintc__news-title a {
    color: var(--text-main);
    text-decoration: none;
}

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

.page-tintc__news-meta {
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-bottom: 1em;
}

.page-tintc__news-excerpt {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5em;
    flex-grow: 1;
}

.page-tintc__read-more-link {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-tintc__read-more-link:hover {
    color: var(--gold-color);
}

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

.page-tintc__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.page-tintc__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--background-color);
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

/* Info Section */
.page-tintc__info-section {
    padding: 60px 0;
    background-color: #F2FFF6; /* Light background for contrast */
    color: #333333; /* Dark text for contrast */
}

.page-tintc__text-dark {
    color: #333333;
}

.page-tintc__text-block {
    font-size: 1.1rem;
    color: #333333;
    text-align: center;
    margin-bottom: 2.5em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-tintc__feature-item {
    background-color: #ffffff; /* White card background for light section */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-tintc__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-tintc__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-tintc__feature-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-tintc__feature-description {
    font-size: 1rem;
    color: #555555;
}

.page-tintc__cta-buttons--center {
    justify-content: center;
}

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

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

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

.page-tintc__faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--text-main);
    transition: background-color 0.3s ease;
}

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

.page-tintc__faq-item summary:hover {
    background-color: var(--divider-color);
}

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

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

.page-tintc__faq-item[open] .page-tintc__faq-toggle {
    color: var(--gold-color);
}

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

/* CTA Section */
.page-tintc__cta-section {
    padding: 60px 0;
    background-color: var(--gold-color);
    text-align: center;
}

.page-tintc__cta-content .page-tintc__section-title,
.page-tintc__cta-content .page-tintc__section-description {
    color: var(--deep-green); /* Dark text for gold background */
}

.page-tintc__cta-content .page-tintc__btn-primary {
    background: var(--button-gradient);
    color: #ffffff; /* White text on button */
}

.page-tintc__cta-content .page-tintc__btn-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-tintc__hero-content {
        margin-top: -50px;
        padding: 30px 15px;
        border-radius: 8px;
    }

    .page-tintc__main-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    .page-tintc__hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    .page-tintc__section-title {
        font-size: clamp(1.3rem, 5vw, 2rem);
        padding-top: 30px;
    }

    .page-tintc__section-description {
        font-size: 1rem;
        margin-bottom: 1.5em;
    }

    .page-tintc__news-grid,
    .page-tintc__features-grid {
        grid-template-columns: 1fr;
    }

    .page-tintc__news-card {
        margin-bottom: 20px;
    }

    .page-tintc__news-image-wrapper {
        height: 180px;
    }

    .page-tintc__news-title {
        font-size: 1.1rem;
    }

    .page-tintc__news-excerpt {
        font-size: 0.95rem;
    }

    .page-tintc__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-tintc__btn-primary,
    .page-tintc__btn-secondary {
        width: 100%;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 15px;
    }

    .page-tintc__container {
        padding: 0 15px;
    }

    .page-tintc__faq-item summary {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-tintc__faq-answer {
        padding: 0 20px 15px 20px;
    }

    /* Ensure images are responsive */
    .page-tintc img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Ensure video containers are responsive */
    .page-tintc__video-section,
    .page-tintc__video-container,
    .page-tintc__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important;
    }

    /* Small top padding for video section on mobile */
    .page-tintc__video-section {
        padding-top: 10px !important;
    }

    .page-tintc__info-section,
    .page-tintc__latest-news-section,
    .page-tintc__faq-section,
    .page-tintc__cta-section {
        padding: 40px 0;
    }
    .page-tintc__card-bg-light {
        background-color: #ffffff;
        color: #333333;
    }
}

/* Desktop specific for width */
.page-tintc__video-container {
    width: 100%; /* Important for flex layout on desktop */
    max-width: 1200px;
}