:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-color: #333333;
    --light-text-color: #f0f0f0;
    --dark-background: #1a1a1a; /* Example dark background if needed, but body is light */
    --border-color: #e0e0e0;
    --button-login-color: #EA7C07;
}

.page-tintc {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color); /* Explicitly white for content area if shared.css doesn't set body */
}

.page-tintc__section {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.page-tintc__dark-bg {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

.page-tintc__light-bg {
    background-color: #f9f9f9; /* Slightly off-white for contrast */
    color: var(--text-color);
}

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

.page-tintc__section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.page-tintc__dark-bg .page-tintc__section-title {
    color: var(--light-text-color);
}

.page-tintc__section-description {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* HERO Section */
.page-tintc__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden; /* Ensure no overflow */
}

.page-tintc__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure width for flex item */
}

.page-tintc__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.page-tintc__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    filter: none; /* No filter allowed */
}

.page-tintc__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-tintc__hero-content h1 {
    font-size: clamp(28px, 4vw, 48px); /* clamp for H1 */
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-tintc__hero-content p {
    font-size: 20px;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-tintc__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s ease;
    max-width: 100%; /* For mobile responsiveness */
    box-sizing: border-box; /* For mobile responsiveness */
    white-space: normal; /* For mobile responsiveness */
    word-wrap: break-word; /* For mobile responsiveness */
}

.page-tintc__cta-button:hover {
    background: #1e87c0; /* Slightly darker primary color */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.page-tintc__news-card {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    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.1);
}

.page-tintc__news-image {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    overflow: hidden;
}

.page-tintc__news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: none; /* No filter allowed */
    transition: transform 0.3s ease;
}

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

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

.page-tintc__news-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

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

.page-tintc__news-title a:hover {
    color: #1e87c0;
    text-decoration: underline;
}

.page-tintc__news-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.page-tintc__news-excerpt {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-tintc__read-more {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    margin-top: auto; /* Push to bottom */
}

.page-tintc__read-more:hover {
    color: #1e87c0;
    text-decoration: underline;
}

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

/* Promotions & Events Section */
.page-tintc__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-tintc__promotion-card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-tintc__promotion-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-tintc__promotion-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--light-text-color);
    margin-bottom: 15px;
}}