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

.page-tintc {
    color: var(--text-main); /* #F2FFF6 */
    background-color: var(--background-color-body); /* #08160F */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Base styles for sections and containers */
.page-tintc__section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

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

.page-tintc__dark-bg {
    background-color: var(--card-bg); /* #11271B */
    padding: 40px 20px;
    border-radius: 12px;
}

/* Hero Section */
.page-tintc__hero-section {
    position: relative;
    padding: 20px 0 60px 0; /* Small top padding, then larger bottom */
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align items to start for top image, then text */
    flex-direction: column;
    background-color: var(--background-color-body);
}

.page-tintc__hero-content-wrapper {
    display: flex;
    flex-direction: column; /* Image on top, text below */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-tintc__hero-image-wrapper {
    width: 100%;
    margin-bottom: 30px; /* Space between image and text */
}

.page-tintc__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-tintc__hero-text-content {
    text-align: center;
    color: var(--text-main);
}

.page-tintc__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Using clamp for H1 font size */
    color: var(--gold-color); /* #F2C14E */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-tintc__intro-text {
    font-size: 1.15rem;
    color: var(--text-secondary); /* #A7D9B8 */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-tintc__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* For responsiveness */
}

.page-tintc__btn-primary,
.page-tintc__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 180px;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-tintc__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main); /* #F2FFF6 */
    border: none;
}

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

.page-tintc__btn-secondary {
    background-color: transparent;
    color: var(--gold-color); /* #F2C14E */
    border: 2px solid var(--gold-color); /* #F2C14E */
}

.page-tintc__btn-secondary:hover {
    background-color: rgba(242, 193, 78, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--gold-color);
}

.page-tintc__text-link {
    color: var(--gold-color); /* #F2C14E */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-tintc__text-link:hover {
    color: var(--glow-color); /* #57E38D */
    text-decoration: underline;
}

.page-tintc__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--text-main); /* #F2FFF6 */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(242, 255, 246, 0.3);
}

.page-tintc__section-description {
    font-size: 1.05rem;
    color: var(--text-secondary); /* #A7D9B8 */
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-tintc__news-card {
    background-color: var(--card-bg); /* #11271B */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure cards have equal height */
    display: flex;
    flex-direction: column;
}

.page-tintc__news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 10px var(--glow-color);
}

.page-tintc__card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-tintc__card-image {
    width: 100%;
    height: 220px; /* Fixed height for consistent card images */
    object-fit: cover;
    display: block;
}

.page-tintc__card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Make content grow to fill space */
}

.page-tintc__card-title {
    font-size: 1.4rem;
    color: var(--text-main); /* #F2FFF6 */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.3;
}

.page-tintc__card-text {
    font-size: 0.95rem;
    color: var(--text-secondary); /* #A7D9B8 */
    margin-bottom: 20px;
    flex-grow: 1; /* Allow text to grow */
}

.page-tintc__read-more {
    color: var(--gold-color); /* #F2C14E */
    font-weight: bold;
    text-decoration: none;
    align-self: flex-start; /* Align to bottom-left */
}

.page-tintc__read-more:hover {
    text-decoration: underline;
    color: var(--glow-color);
}

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

/* Promotions Section */
.page-tintc__promotions {
    background-color: var(--deep-green); /* #0A4B2C */
}

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

.page-tintc__promo-card {
    background-color: var(--card-bg); /* #11271B */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-tintc__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 10px var(--glow-color);
}

.page-tintc__promo-title {
    font-size: 1.5rem;
    color: var(--gold-color); /* #F2C14E */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-tintc__promo-text {
    font-size: 1rem;
    color: var(--text-secondary); /* #A7D9B8 */
    margin-bottom: 25px;
    flex-grow: 1;
}

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