.page-contact {
    color: #ffffff; /* Light text for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

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

/* Hero Section */
.page-contact__hero-section {
    background-color: #0A0A0A;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-contact__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.page-contact__hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-contact__hero-content {
    position: relative;
    z-index: 2;
}

.page-contact__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-contact__hero-description {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-contact__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 200px; /* Ensure buttons are not too small */
    text-align: center;
}

.page-contact__button--primary {
    background-color: #FFD700;
    color: #0A0A0A;
    border: 2px solid #FFD700;
}

.page-contact__button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-contact__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-contact__button--secondary:hover {
    background-color: #FFD700;
    color: #0A0A0A;
}

.page-contact__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    min-width: 150px;
}

.page-contact__button--large {
    padding: 18px 35px;
    font-size: 1.2em;
    min-width: 250px;
}

/* Section Titles and Intros */
.page-contact__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

.page-contact__section-intro {
    font-size: 1.1em;
    color: #f0f0f0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

/* Channels Section */
.page-contact__channels-section {
    background-color: #1a1a1a;
    padding: 80px 0;
}

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

.page-contact__channel-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-contact__channel-card:hover {
    transform: translateY(-10px);
}

.page-contact__channel-icon {
    width: 250px; /* Increased size */
    height: 200px; /* Increased size */
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-contact__channel-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-contact__channel-description {
    font-size: 1em;
    color: #cccccc;
    margin-bottom: 25px;
}

/* Dedicated Support Section */
.page-contact__dedicated-support-section {
    background-color: #0A0A0A;
    padding: 80px 0;
}

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

.page-contact__support-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-contact__support-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-contact__support-description {
    font-size: 0.95em;
    color: #e0e0e0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-contact__image-fullwidth {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Minimum size for content images */
    min-height: 200px; /* Minimum size for content images */
}

/* Responsible Gaming Section */
.page-contact__responsible-gaming-section {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.page-contact__responsible-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-contact__responsible-text {
    flex: 1;
    min-width: 300px;
    color: #e0e0e0;
}

.page-contact__responsible-text h3 {
    color: #FFD700;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.page-contact__responsible-text p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-contact__responsible-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-contact__responsible-text ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    font-size: 1.05em;
}

.page-contact__responsible-text ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD700;
}

.page-contact__responsible-image {
    flex: 1;
    min-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    min-height: 200px; /* Minimum size for content images */
}

/* Inquiries Section */
.page-contact__inquiries-section {
    background-color: #0A0A0A;
    padding: 80px 0;
}

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

.page-contact__inquiry-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-contact__inquiry-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-contact__inquiry-description {
    font-size: 0.95em;
    color: #e0e0e0;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* FAQ Section */
.page-contact__faq-section {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.page-contact__faq-list {
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-contact__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-contact__faq-question {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-contact__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-contact__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

.page-contact__faq-answer {
    font-size: 1em;
    color: #e0e0e0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding-top: 0;
}

.page-contact__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

/* Call to Action Section */
.page-contact__cta-section {
    background-color: #0A0A0A;
    padding: 80px 0;
    text-align: center;
}

.page-contact__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-contact__hero-title {
        font-size: 3em;
    }
    .page-contact__section-title {
        font-size: 2.2em;
    }
    .page-contact__hero-image {
        min-width: 200px;
        min-height: 200px;
    }
    .page-contact__image-fullwidth {
        min-width: 200px;
        min-height: 200px;
    }
    .page-contact__responsible-image {
        min-width: 200px;
        min-height: 200px;
    }
    .page-contact__channel-icon {
        width: 200px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .page-contact {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
    }
    .page-contact__hero-section {
        padding: 60px 15px;
    }
    .page-contact__hero-title {
        font-size: 2.5em;
    }
    .page-contact__hero-description {
        font-size: 1em;
    }
    .page-contact__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-contact__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-contact__section-title {
        font-size: 1.8em;
    }
    .page-contact__section-intro {
        font-size: 0.95em;
        margin-bottom: 40px;
    }
    .page-contact__channels-grid,
    .page-contact__support-grid,
    .page-contact__inquiries-grid {
        grid-template-columns: 1fr;
    }
    .page-contact__responsible-content {
        flex-direction: column;
    }
    .page-contact__responsible-image {
        min-width: unset; /* Allow to shrink for mobile */
        width: 100%;
    }
    .page-contact__responsible-text {
        min-width: unset;
        width: 100%;
    }
    .page-contact__faq-question {
        font-size: 1.2em;
    }
    .page-contact__faq-answer {
        font-size: 0.9em;
    }
    .page-contact__image-fullwidth,
    .page-contact__responsible-image,
    .page-contact__channel-icon {
        max-width: 100%;
        height: auto;
    }
    .page-contact__channel-icon {
        width: 200px;
        height: auto;
    }
    /* Enforce min-width on img to prevent small icons, even if max-width is 100% */
    .page-contact__container img:not(.page-contact__channel-icon),
    .page-contact__responsible-gaming-section img {
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 2em;
    }
    .page-contact__section-title {
        font-size: 1.5em;
    }
    .page-contact__hero-section {
        padding: 40px 10px;
    }
    .page-contact__hero-description {
        font-size: 0.9em;
    }
    .page-contact__button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-contact__faq-question {
        font-size: 1.1em;
    }
    .page-contact__faq-answer {
        font-size: 0.85em;
    }
    .page-contact__channel-icon {
        width: 180px;
        height: auto;
    }
}