.page-contact {
    color: #333333;
    font-family: Arial, sans-serif;
}

.page-contact__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: var(--header-offset, 120px);
    background-color: #000000;
}

.page-contact__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.page-contact__hero-image {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.6;
}

.page-contact__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFFFFF;
    padding: 20px;
    max-width: 800px;
    width: 90%;
    box-sizing: border-box;
}

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

.page-contact__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.page-contact__button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1em;
    cursor: pointer;
    border: none;
}

.page-contact__button--register {
    background-color: #FFFFFF;
    color: #000000;
}

.page-contact__button--register:hover {
    background-color: #f0f0f0;
}

.page-contact__button--login {
    background-color: #FCBC45;
    color: #000000;
}

.page-contact__button--login:hover {
    background-color: #e0a030;
}

.page-contact__channels-section {
    padding: 60px 20px;
    background-color: #FFFFFF;
    text-align: center;
}

.page-contact__channels-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-contact__channels-title {
    font-size: 2.5em;
    color: #000000;
    margin-bottom: 20px;
}

.page-contact__channels-intro {
    font-size: 1.1em;
    color: #555555;
    margin-bottom: 40px;
}

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

.page-contact__channel-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-contact__channel-icon {
    width: 200px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

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

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

.page-contact__button--small {
    padding: 10px 25px;
    font-size: 0.9em;
    background-color: #FCBC45;
    color: #000000;
}

.page-contact__button--small:hover {
    background-color: #e0a030;
}

.page-contact__form-section {
    padding: 60px 20px;
    background-color: #f0f0f0;
}

.page-contact__form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.page-contact__form-title {
    font-size: 2.5em;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

.page-contact__form-description {
    font-size: 1.1em;
    color: #555555;
    margin-bottom: 40px;
    text-align: center;
}

.page-contact__contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-contact__form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.page-contact__form-label {
    font-weight: bold;
    margin-bottom: 8px;
    color: #333333;
}

.page-contact__form-input,
.page-contact__form-textarea {
    padding: 12px 15px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
}

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

.page-contact__button--submit {
    background-color: #000000;
    color: #FFFFFF;
    align-self: center;
    margin-top: 20px;
}

.page-contact__button--submit:hover {
    background-color: #333333;
}

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

    .page-contact__hero-description {
        font-size: 1em;
    }

    .page-contact__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-contact__button {
        width: 100%;
        max-width: 250px;
    }

    .page-contact__channels-title,
    .page-contact__form-title {
        font-size: 2em;
    }

    .page-contact__channel-grid {
        grid-template-columns: 1fr;
    }

    .page-contact__channel-icon {
        width: 150px;
        height: 120px;
    }

    .page-contact__form-container {
        padding: 30px 20px;
    }

    .page-contact__hero-image,
    .page-contact__channel-icon,
    .page-contact__hero-section img,
    .page-contact__channels-section img,
    .page-contact__form-section img {
        max-width: 100%;
        height: auto;
    }

    .page-contact__channel-card img {
        width: 200px;
        
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 1.6em;
    }

    .page-contact__hero-description {
        font-size: 0.9em;
    }

    .page-contact__channels-title,
    .page-contact__form-title {
        font-size: 1.8em;
    }

    .page-contact__channel-name {
        font-size: 1.5em;
    }
}