.page-contact {
    font-family: Arial, sans-serif;
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background-color: #f8f8f8; /* Slightly off-white for content area */
}

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

.page-contact__section-title {
    font-size: 2.5em;
    color: #1A2E44; /* Primary brand color */
    text-align: center;
    margin-bottom: 20px;
    margin-top: 60px;
    font-weight: bold;
}

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

/* Hero Section */
.page-contact__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    min-height: 500px;
    background-color: #1A2E44; /* Dark background for hero */
    color: #ffffff;
    padding: 80px 20px; /* Adjust padding to ensure content is visible below header offset */
}

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

.page-contact__hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    border-radius: 10px;
}

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

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

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

.page-contact__hero-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.page-contact__hero-button--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2E44; /* Dark text on gold */
    border: 2px solid #FFD700;
}

.page-contact__hero-button--primary:hover {
    background-color: #e6c200;
    color: #0d1e2e;
}

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

.page-contact__hero-button--secondary:hover {
    background-color: #FFD700;
    color: #1A2E44;
}

/* Support Features Section */
.page-contact__support-features {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.page-contact__feature-item {
    background-color: #f0f4f7;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-contact__feature-icon {
    width: 400px; /* At least 200px */
    height: 300px; /* At least 200px */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-contact__feature-title {
    font-size: 1.6em;
    color: #1A2E44;
    margin-bottom: 15px;
}

.page-contact__feature-description {
    font-size: 1em;
    color: #666666;
}

/* Contact Methods Section */
.page-contact__contact-methods {
    padding: 80px 0;
    background-color: #f8f8f8;
}

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

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

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

.page-contact__method-image {
    width: 100%; /* Ensure image fills card, will be constrained by card width */
    height: 250px; /* Fixed height for consistency, will be object-fit */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-contact__method-title {
    font-size: 1.8em;
    color: #1A2E44;
    margin-bottom: 15px;
}

.page-contact__method-description {
    font-size: 1em;
    color: #666666;
    margin-bottom: 20px;
}

.page-contact__email-address {
    font-size: 1.1em;
    font-weight: bold;
    color: #FFD700;
    margin-top: 15px;
}

.page-contact__method-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2E44;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__method-button:hover {
    background-color: #e6c200;
    color: #0d1e2e;
}

.page-contact__social-media-mention {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.page-contact__social-title {
    font-size: 1.8em;
    color: #1A2E44;
    margin-bottom: 15px;
}

.page-contact__social-description {
    font-size: 1em;
    color: #666666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Common Issues Section */
.page-contact__common-issues {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.page-contact__issue-item {
    background-color: #f0f4f7;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__issue-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.page-contact__issue-title {
    font-size: 1.6em;
    color: #1A2E44;
    margin-bottom: 15px;
}

.page-contact__issue-description {
    font-size: 1em;
    color: #666666;
    margin-bottom: 20px;
}

.page-contact__issue-link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-contact__issue-link:hover {
    color: #e6c200;
    border-color: #e6c200;
}

/* Feedback Section */
.page-contact__feedback-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.page-contact__feedback-form {
    max-width: 700px;
    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-group {
    margin-bottom: 25px;
}

.page-contact__form-label {
    display: block;
    font-size: 1.1em;
    color: #1A2E44;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 1em;
    color: #333333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__form-textarea {
    resize: vertical;
    min-height: 120px;
}

.page-contact__form-submit-button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background-color: #1A2E44;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}