/* style/responsible-gambling-problem-gambling-help.css */

/* General Styles for the Page */
.page-responsible-gambling-problem-gambling-help {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-responsible-gambling-problem-gambling-help .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-responsible-gambling-problem-gambling-help .hero-section {
    background: linear-gradient(135deg, #0A2E36 0%, #0A2E36 70%, #E0B34C 100%); /* Main color dominant, aux for accent */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling-problem-gambling-help .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-responsible-gambling-problem-gambling-help .hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-responsible-gambling-problem-gambling-help .highlight {
    color: #E0B34C; /* Auxiliary color for emphasis */
}

.page-responsible-gambling-problem-gambling-help .btn-primary {
    display: inline-block;
    background-color: #E0B34C; /* Auxiliary color for primary button */
    color: #0A2E36; /* Text color for contrast */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
}

.page-responsible-gambling-problem-gambling-help .btn-primary:hover {
    background-color: #f5c76e; /* Slightly lighter aux color on hover */
    transform: translateY(-2px);
}

.page-responsible-gambling-problem-gambling-help .section-title {
    font-size: 2.5em;
    color: #0A2E36; /* Main color for section titles */
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

.page-responsible-gambling-problem-gambling-help .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E0B34C; /* Auxiliary color for underline */
    border-radius: 2px;
}

.page-responsible-gambling-problem-gambling-help .section-subtitle {
    font-size: 2em;
    color: #0A2E36;
    text-align: center;
    margin-bottom: 40px;
}

.page-responsible-gambling-problem-gambling-help section {
    padding: 80px 0;
}

.page-responsible-gambling-problem-gambling-help .section-intro, .page-responsible-gambling-problem-gambling-help .section-self-help, .page-responsible-gambling-problem-gambling-help .section-conclusion {
    background-color: #fff;
}

.page-responsible-gambling-problem-gambling-help .section-symptoms, .page-responsible-gambling-problem-gambling-help .section-resources, .page-responsible-gambling-problem-gambling-help .section-vn8day-commitment {
    background-color: #f0f2f5;
}

.page-responsible-gambling-problem-gambling-help .intro-content p, .page-responsible-gambling-problem-gambling-help .section-conclusion p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
}

.page-responsible-gambling-problem-gambling-help .image-wrapper {
    margin: 40px auto;
    text-align: center;
}

.page-responsible-gambling-problem-gambling-help .content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling-problem-gambling-help .keyword-text {
    color: #0A2E36;
    font-weight: bold;
}

/* Symptoms Grid */
.page-responsible-gambling-problem-gambling-help .symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-responsible-gambling-problem-gambling-help .symptom-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling-problem-gambling-help .symptom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-responsible-gambling-problem-gambling-help .symptom-card .card-title {
    font-size: 1.5em;
    color: #0A2E36;
    margin-bottom: 15px;
}

.page-responsible-gambling-problem-gambling-help .symptom-card .card-description {
    font-size: 1em;
    color: #555;
}

/* Resource Grid */
.page-responsible-gambling-problem-gambling-help .resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-responsible-gambling-problem-gambling-help .resource-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling-problem-gambling-help .resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-responsible-gambling-problem-gambling-help .resource-card .card-image {
    max-width: 100%;
    height: 180px; /* Fixed height for images */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-responsible-gambling-problem-gambling-help .resource-card .card-title {
    font-size: 1.6em;
    color: #0A2E36;
    margin-bottom: 15px;
}

.page-responsible-gambling-problem-gambling-help .resource-card .card-description {
    font-size: 1em;
    color: #555;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-responsible-gambling-problem-gambling-help .btn-secondary {
    display: inline-block;
    background-color: #0A2E36; /* Main color for secondary button */
    color: #E0B34C; /* Auxiliary color for text */
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #0A2E36;
    font-size: 1em;
}

.page-responsible-gambling-problem-gambling-help .btn-secondary:hover {
    background-color: #1a4d5a; /* Slightly lighter main color */
    color: #f5c76e; /* Slightly lighter aux color */
}

/* Self-Help Grid */
.page-responsible-gambling-problem-gambling-help .self-help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-responsible-gambling-problem-gambling-help .self-help-item {
    background-color: #f0f2f5;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.page-responsible-gambling-problem-gambling-help .self-help-item:hover {
    background-color: #e6e8eb;
}

.page-responsible-gambling-problem-gambling-help .self-help-item .item-title {
    font-size: 1.4em;
    color: #0A2E36;
    margin-bottom: 15px;
}

.page-responsible-gambling-problem-gambling-help .self-help-item p {
    font-size: 1em;
    color: #555;
}

/* vn8day Commitment Section */
.page-responsible-gambling-problem-gambling-help .commitment-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-responsible-gambling-problem-gambling-help .commitment-list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #E0B34C; /* Auxiliary color for accent */
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #444;
}

.page-responsible-gambling-problem-gambling-help .commitment-list li strong {
    color: #0A2E36; /* Main color for strong text */
}

.page-responsible-gambling-problem-gambling-help .cta-block {
    background-color: #0A2E36; /* Main color for CTA block background */
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-problem-gambling-help .cta-text {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #fff;
}

/* Conclusion Section */
.page-responsible-gambling-problem-gambling-help .section-conclusion a {
    color: #E0B34C;
    text-decoration: none;
    font-weight: bold;
}

.page-responsible-gambling-problem-gambling-help .section-conclusion a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-responsible-gambling-problem-gambling-help .hero-title {
        font-size: 2.8em;
    }
    .page-responsible-gambling-problem-gambling-help .hero-subtitle {
        font-size: 1.2em;
    }
    .page-responsible-gambling-problem-gambling-help .section-title {
        font-size: 2em;
    }
    .page-responsible-gambling-problem-gambling-help .section-subtitle {
        font-size: 1.8em;
    }
    .page-responsible-gambling-problem-gambling-help .symptoms-grid, 
    .page-responsible-gambling-problem-gambling-help .resource-grid, 
    .page-responsible-gambling-problem-gambling-help .self-help-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-responsible-gambling-problem-gambling-help .hero-section {
        padding: 80px 0;
    }
    .page-responsible-gambling-problem-gambling-help .hero-title {
        font-size: 2.2em;
    }
    .page-responsible-gambling-problem-gambling-help .hero-subtitle {
        font-size: 1em;
    }
    .page-responsible-gambling-problem-gambling-help .section-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling-problem-gambling-help .section-subtitle {
        font-size: 1.6em;
    }
    .page-responsible-gambling-problem-gambling-help section {
        padding: 60px 0;
    }
    .page-responsible-gambling-problem-gambling-help .cta-text {
        font-size: 1.2em;
    }
    .page-responsible-gambling-problem-gambling-help .btn-primary {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-responsible-gambling-problem-gambling-help .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-problem-gambling-help .hero-section {
        padding: 60px 0;
    }
    .page-responsible-gambling-problem-gambling-help .hero-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling-problem-gambling-help .hero-subtitle {
        font-size: 0.9em;
    }
    .page-responsible-gambling-problem-gambling-help .section-title {
        font-size: 1.5em;
        margin-bottom: 40px;
    }
    .page-responsible-gambling-problem-gambling-help .section-subtitle {
        font-size: 1.4em;
    }
    .page-responsible-gambling-problem-gambling-help section {
        padding: 40px 0;
    }
    .page-responsible-gambling-problem-gambling-help .symptoms-grid, 
    .page-responsible-gambling-problem-gambling-help .resource-grid, 
    .page-responsible-gambling-problem-gambling-help .self-help-grid {
        grid-template-columns: 1fr;
    }
    .page-responsible-gambling-problem-gambling-help .cta-block {
        padding: 30px;
    }
    .page-responsible-gambling-problem-gambling-help .cta-text {
        font-size: 1em;
    }
    .page-responsible-gambling-problem-gambling-help .commitment-list li {
        font-size: 1em;
        padding: 15px;
    }
}