.page-contact {
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-contact__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px; /* Minimum height for hero section */
}

.page-contact__hero-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-contact__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-contact__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 36, 99, 0.7); /* Main color with transparency */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #ffffff;
}

.page-contact__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Auxiliary color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    line-height: 1.2;
}

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

.page-contact__hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-contact__hero-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, transform 0.3s ease;
    white-space: nowrap;
}

.page-contact__hero-button--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2463; /* Dark blue */
    border: 2px solid #FFD700;
}

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

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

.page-contact__hero-button--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

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

.page-contact__section-title {
    font-size: 2.2em;
    color: #0A2463; /* Dark blue */
    text-align: center;
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: bold;
}

.page-contact__section-intro {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555555;
}

.page-contact__info-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

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

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

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

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

.page-contact__channel-title {
    font-size: 1.6em;
    color: #0A2463;
    margin-bottom: 15px;
}

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

.page-contact__channel-button {
    display: inline-block;
    background-color: #0A2463;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-contact__channel-button:hover {
    background-color: #1a4293;
}

.page-contact__form-section {
    padding: 60px 0;
    background-color: #f0f4f8;
}

.page-contact__contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.page-contact__form-group {
    margin-bottom: 25px;
}

.page-contact__form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0A2463;
    font-size: 1.05em;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    font-size: 1em;
    color: #333333;
    box-sizing: border-box;
}

.page-contact__form-textarea {
    resize: vertical;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #FFD700;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.page-contact__form-submit-button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background-color: #FFD700;
    color: #0A2463;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-contact__faq-section {
    padding: 60px 0;
}

.page-contact__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-contact__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-contact__faq-question {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-contact__faq-answer {
    color: #555555;
    font-size: 1em;
}

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

.page-contact__more-faq-button {
    display: inline-block;
    background-color: #0A2463;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-contact__more-faq-button:hover {
    background-color: #1a4293;
}

.page-contact__responsible-gaming-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.page-contact__responsible-gaming-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-contact__responsible-gaming-image {
    flex: 1 1 45%;
    min-width: 300px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-contact__responsible-gaming-text {
    flex: 1 1 50%;
    min-width: 300px;
}

.page-contact__responsible-gaming-text p {
    margin-bottom: 15px;
    color: #555555;
}

.page-contact__responsible-gaming-text ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555555;
}

.page-contact__responsible-gaming-text li {
    margin-bottom: 8px;
}

.page-contact__responsible-gaming-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2463;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-contact__responsible-gaming-button:hover {
    background-color: #e6c200;
}

.page-contact__call-to-action-section {
    background-color: #0A2463; /* Main brand color */
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.page-contact__call-to-action-section .page-contact__section-title,
.page-contact__call-to-action-section .page-contact__section-intro {
    color: #ffffff;
}

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

.page-contact__cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.15em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__cta-button--primary {
    background-color: #FFD700;
    color: #0A2463;
    border: 2px solid #FFD700;
}

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

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

.page-contact__cta-button--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.page-contact__why-support-section {
    padding: 60px 0;
    background-color: #f0f4f8;
}

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

.page-contact__benefit-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    padding: 30px;
    text-align: center;
}

.page-contact__benefit-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-contact__benefit-description {
    color: #666666;
    font-size: 0.95em;
}

.page-contact__about-context {
    padding: 60px 0;
}

.page-contact__about-context p {
    color: #555555;
    font-size: 1.05em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-contact__hero-title {
        font-size: 2.4em;
    }
    .page-contact__hero-description {
        font-size: 1.1em;
    }
    .page-contact__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-contact__hero-section {
        min-height: 400px;
    }
    .page-contact__hero-title {
        font-size: 2em;
    }
    .page-contact__hero-description {
        font-size: 1em;
    }
    .page-contact__hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .page-contact__hero-button {
        width: 80%;
        max-width: 300px;
    }
    .page-contact__section-title {
        font-size: 1.8em;
    }
    .page-contact__section-intro {
        font-size: 0.95em;
    }
    .page-contact__channel-card,
    .page-contact__benefit-card {
        padding: 25px;
    }
    .page-contact__contact-form {
        padding: 30px;
    }
    .page-contact__faq-question {
        font-size: 1.1em;
    }
    .page-contact__responsible-gaming-content {
        flex-direction: column;
    }
    .page-contact__responsible-gaming-image {
        min-width: unset;
    }
    .page-contact__responsible-gaming-text {
        min-width: unset;
    }
    .page-contact__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-contact__cta-button {
        width: 80%;
        max-width: 300px;
    }

    /* Ensure all images within .page-contact are responsive and don't overflow */
    .page-contact img {
        max-width: 100% !important;
        height: auto !important;
    }
    /* Specific override for channel icons to ensure they don't get too small if parent is small */
    .page-contact__channel-icon {
        width: 200px;
        height: auto;
    }
    .page-contact__responsible-gaming-image {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 1.6em;
    }
    .page-contact__hero-description {
        font-size: 0.9em;
    }
    .page-contact__hero-button {
        font-size: 1em;
        padding: 12px 20px;
    }
    .page-contact__section-title {
        font-size: 1.5em;
    }
    .page-contact__section-intro {
        font-size: 0.85em;
    }
    .page-contact__channel-card,
    .page-contact__benefit-card {
        padding: 20px;
    }
    .page-contact__contact-form {
        padding: 20px;
    }
    .page-contact__faq-question {
        font-size: 1em;
    }
    .page-contact__form-input,
    .page-contact__form-textarea {
        padding: 10px;
    }
    .page-contact__form-submit-button {
        font-size: 1.1em;
    }
    .page-contact__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
}