.page-contact {
    color: #333333; /* Dark text for default light body background */
}

.page-contact__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
    background-color: #000080; /* Midnight Blue auxiliary color */
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    padding-bottom: 60px;
}

.page-contact__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.page-contact__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

.page-contact__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold main color */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.page-contact__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #f0f0f0;
}

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

.page-contact__section-title {
    font-size: 2.8em;
    color: #000080; /* Midnight Blue auxiliary color */
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-contact__section-intro {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.page-contact__methods-section {
    background-color: #f8f8f8;
    padding: 60px 0;
}

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

.page-contact__method-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-contact__card-icon {
    width: 100%;
    height: auto;
    max-width: 400px;
    max-height: 300px;
    object-fit: contain;
    margin: 0 auto 20px auto;
    display: block;
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px;
}

.page-contact__card-title {
    font-size: 1.8em;
    color: #000080;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-contact__card-description {
    font-size: 1em;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.page-contact__card-button {
    display: inline-block;
    background-color: #FFD700; /* Gold main color */
    color: #000080; /* Midnight Blue for text */
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-contact__card-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-contact__faq-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-contact__faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-contact__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-contact__faq-question {
    font-size: 1.4em;
    color: #000080;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-contact__faq-answer {
    font-size: 1em;
    color: #444444;
    line-height: 1.7;
}

.page-contact__more-faq {
    text-align: center;
    margin-top: 50px;
}

.page-contact__more-faq-button {
    display: inline-block;
    background-color: #000080; /* Midnight Blue auxiliary color */
    color: #FFD700; /* Gold main color */
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 128, 0.3);
}

.page-contact__more-faq-button:hover {
    background-color: #000066;
    transform: translateY(-2px);
}

.page-contact__cta-section {
    background-color: #000080; /* Midnight Blue auxiliary color */
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-contact__cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.page-contact__cta-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    min-width: 200px;
    min-height: 200px;
}

.page-contact__cta-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold main color */
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.page-contact__cta-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
    color: #f0f0f0;
}

.page-contact__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold main color */
    color: #000080; /* Midnight Blue for text */
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.4em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.5);
}

.page-contact__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.7);
}

.page-contact__responsible-gaming-section {
    padding: 60px 0;
    background-color: #f0f0f0;
    text-align: center;
}

.page-contact__responsible-gaming-button {
    display: inline-block;
    background-color: #000080; /* Midnight Blue auxiliary color */
    color: #FFD700; /* Gold main color */
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 128, 0.3);
}

.page-contact__responsible-gaming-button:hover {
    background-color: #000066;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-contact__hero-title {
        font-size: 2.8em;
    }
    .page-contact__cta-title {
        font-size: 3em;
    }
}

@media (max-width: 768px) {
    .page-contact__hero-section {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
        padding: 40px 15px;
    }
    .page-contact__hero-title {
        font-size: 2.2em;
    }
    .page-contact__hero-description {
        font-size: 1em;
    }
    .page-contact__section-title {
        font-size: 2em;
    }
    .page-contact__section-intro {
        font-size: 0.95em;
    }
    .page-contact__method-grid,
    .page-contact__faq-grid {
        grid-template-columns: 1fr;
    }
    .page-contact__cta-title {
        font-size: 2.5em;
    }
    .page-contact__cta-description {
        font-size: 1em;
    }
    .page-contact__cta-button {
        font-size: 1.2em;
        padding: 15px 30px;
    }
    /* Ensure content images are responsive and don't overflow */
    .page-contact img {
        max-width: 100%;
        height: auto;
    }
    .page-contact__hero-image, .page-contact__card-icon, .page-contact__cta-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure min size is maintained */
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 1.8em;
    }
    .page-contact__cta-title {
        font-size: 2em;
    }
    .page-contact__card-title {
        font-size: 1.5em;
    }
    .page-contact__faq-question {
        font-size: 1.2em;
    }
}