.page-tintc {
    background-color: var(--background, #F4F7FB);
    color: var(--text-main, #1F2D3D);
    padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-tintc__hero-section {
    position: relative;
    text-align: center;
    overflow: hidden;
    padding-bottom: 30px; /* Space below hero content */
}

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

.page-tintc__hero-content {
    max-width: 900px;
    margin: 30px auto 0 auto; /* Margin top from image, auto for horizontal centering */
    padding: 0 20px;
    text-align: center;
}

.page-tintc__main-title {
    font-size: clamp(2em, 3.5vw, 3em); /* Responsive font size */
    font-weight: bold;
    color: var(--custom-color-1776249996415, #000000); /* Use custom color for titles */
    line-height: 1.2;
    margin-bottom: 15px;
    max-width: 100%;
}

.page-tintc__description {
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--text-main, #1F2D3D);
    margin-bottom: 30px;
}

.page-tintc__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--button, linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%));
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.page-tintc__cta-button:hover {
    opacity: 0.9;
}

.page-tintc__news-list-section {
    padding: 50px 0;
    background-color: var(--background, #F4F7FB);
}

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

.page-tintc__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    font-weight: bold;
    color: var(--custom-color-1776249996415, #000000);
    text-align: center;
    margin-bottom: 40px;
}

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

.page-tintc__news-card {
    background-color: var(--card-b-g, #FFFFFF);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border, #D6E2FF);
}

.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: 225px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

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

.page-tintc__news-date {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
    display: block;
}

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

.page-tintc__news-title a {
    color: var(--text-main, #1F2D3D);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-tintc__news-title a:hover {
    color: var(--primary-color, #2F6BFF);
}

.page-tintc__news-excerpt {
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-tintc__read-more {
    display: inline-block;
    color: var(--primary-color, #2F6BFF);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-tintc__read-more:hover {
    color: var(--accent-color, #6FA3FF);
}

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

.page-tintc__view-all-button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--button, linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%));
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.page-tintc__view-all-button:hover {
    opacity: 0.9;
}

.page-tintc__register-promo-section {
    background-color: var(--primary-color, #2F6BFF); /* Use primary color as background */
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
    margin-top: 50px;
}

.page-tintc__promo-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-tintc__promo-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-tintc__promo-cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: #FFFFFF; /* White button on blue background */
    color: var(--primary-color, #2F6BFF);
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
}

.page-tintc__promo-cta-button:hover {
    background: #e0e0e0;
    color: var(--primary-color, #2F6BFF);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-tintc__hero-content {
        margin-top: 20px;
    }

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

    .page-tintc__description {
        font-size: 1em;
    }

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

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

    .page-tintc__news-image {
        height: 200px; /* Adjust height for smaller screens */
    }

    .page-tintc__section-title,
    .page-tintc__promo-title {
        font-size: clamp(1.5em, 5vw, 2em);
    }

    /* Mobile content area image overflow fix */
    .page-tintc img {
        max-width: 100%;
        height: auto;
    }
}