.page-contact {
    color: #333333; /* Dark text for default light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-contact__section-title {
    font-size: 2.5rem;
    color: #007bff; /* Primary color for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-contact__section-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555555;
}

/* Hero Section */
.page-contact__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Fixed height for hero */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
}

.page-contact__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire hero area */
    z-index: 1;
    opacity: 0.7;
}

.page-contact__hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
}

.page-contact__hero-title {
    font-size: 3.5rem;
    color: #ffc107; /* Secondary color for hero title */
    margin-bottom: 15px;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-contact__hero-description {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #f0f0f0;
    line-height: 1.5;
}

.page-contact__hero-cta-button {
    display: inline-block;
    background-color: #ffc107; /* Secondary color for CTA */
    color: #000000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #ffc107;
}

.page-contact__hero-cta-button:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

/* Contact Methods Section */
.page-contact__methods-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.page-contact__methods-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: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-contact__method-icon {
    width: 250px; /* Increased size */
    height: 187px; /* Adjusted height for 4:3 aspect ratio */
    margin-bottom: 25px;
    object-fit: contain;
}

.page-contact__method-title {
    font-size: 1.8rem;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-contact__method-text {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-contact__method-button {
    display: inline-block;
    background-color: #007bff; /* Primary color for buttons */
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid #007bff;
}

.page-contact__method-button:hover {
    background-color: #0056b3;
}

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

.page-contact__accordion {
    margin-top: 40px;
}

.page-contact__accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-contact__accordion-header {
    background-color: #f0f8ff; /* Light blue background */
    color: #007bff;
    padding: 20px;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-contact__accordion-header:hover {
    background-color: #e6f2ff;
}

.page-contact__accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-contact__accordion-item.active .page-contact__accordion-header::after {
    content: '-';
    transform: rotate(180deg);
}

.page-contact__accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #ffffff;
    color: #444444;
}

.page-contact__accordion-content.active {
    max-height: 500px; /* Max height for content, adjust as needed */
    padding: 20px;
}

.page-contact__accordion-content p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.page-contact__accordion-cta {
    display: inline-block;
    background-color: #ffc107; /* Secondary color */
    color: #000000;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid #ffc107;
}

.page-contact__accordion-cta:hover {
    background-color: #e0a800;
}

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

.page-contact__feedback-form {
    max-width: 700px;
    margin: 40px auto 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-contact__form-label {
    display: block;
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px); /* Adjust for padding */
    padding: 12px 10px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-size: 1rem;
    color: #333333;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #007bff;
    outline: none;
}

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

.page-contact__form-submit-button {
    display: block;
    width: 100%;
    background-color: #007bff; /* Primary color */
    color: #ffffff;
    padding: 15px 0;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__form-submit-button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Security Assurance Section */
.page-contact__security-assurance-section {
    padding: 80px 0;
    background-color: #e9ecef;
}

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

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

.page-contact__assurance-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.page-contact__assurance-title {
    font-size: 1.6rem;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-contact__assurance-text {
    font-size: 1rem;
    color: #666666;
}

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

.page-contact__cta-container {
    max-width: 900px;
}

.page-contact__cta-title {
    font-size: 2.8rem;
    color: #ffc107; /* Secondary color for CTA title */
    margin-bottom: 20px;
    font-weight: bold;
}

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

.page-contact__cta-button {
    display: inline-block;
    background-color: #ffc107; /* Secondary color for CTA */
    color: #000000;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #ffc107;
}

.page-contact__cta-button:hover {
    background-color: #e0a800;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-contact__hero-title {
        font-size: 2.8rem;
    }
    .page-contact__hero-description {
        font-size: 1.1rem;
    }
    .page-contact__cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .page-contact {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
    }
    .page-contact__hero-section {
        height: 500px;
    }
    .page-contact__hero-title {
        font-size: 2.2rem;
    }
    .page-contact__hero-description {
        font-size: 1rem;
    }
    .page-contact__hero-cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-contact__section-title {
        font-size: 2rem;
    }
    .page-contact__section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .page-contact__methods-grid {
        grid-template-columns: 1fr;
    }
    .page-contact__method-icon {
        width: 200px; /* Minimum size */
        height: 150px; /* Minimum height */
    }
    .page-contact__accordion-header {
        font-size: 1.1rem;
        padding: 15px;
    }
    .page-contact__accordion-content.active {
        padding: 15px;
    }
    .page-contact__feedback-form {
        padding: 25px;
    }
    .page-contact__assurance-points {
        grid-template-columns: 1fr;
    }
    .page-contact__cta-title {
        font-size: 1.8rem;
    }
    .page-contact__cta-description {
        font-size: 1rem;
    }
    .page-contact__cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    /* Ensure all images within .page-contact are responsive and don't overflow */
    .page-contact img {
        max-width: 100%;
        height: auto;
    }
    .page-contact__method-card img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-contact__hero-section {
        height: 400px;
    }
    .page-contact__hero-title {
        font-size: 1.8rem;
    }
    .page-contact__hero-description {
        font-size: 0.9rem;
    }
    .page-contact__section-title {
        font-size: 1.6rem;
    }
    .page-contact__cta-title {
        font-size: 1.6rem;
    }
    .page-contact__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Ensure all images within .page-contact are at least 200px wide/high if not max-width: 100% */
/* This rule applies to all img elements that are not explicitly styled smaller by other rules */
.page-contact img:not(.page-contact__hero-image) {
    min-width: 200px;
    min-height: 200px;
    object-fit: contain; /* Adjust as needed, cover or contain */
}