.page-contact {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-contact .hero-section-contact {
    background: linear-gradient(135deg, #FFD700, #000080);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-contact .main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: bold;
}

.page-contact .tagline {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #f0f0f0;
}

.page-contact .link-in-text {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
}

.page-contact .link-in-text:hover {
    color: #fff;
}

.page-contact .cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #000080;
    color: #FFD700;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #FFD700;
}

.page-contact .cta-button:hover {
    background-color: #FFD700;
    color: #000080;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-contact .introduction-support, .page-contact .contact-channels, .page-contact .contact-form-section, .page-contact .common-issues, .page-contact .faq-section, .page-contact .commitment-section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-contact .introduction-support {
    background-color: #fff;
}

.page-contact .contact-channels {
    background-color: #fefefe;
}

.page-contact .contact-form-section {
    background-color: #fff;
}

.page-contact .common-issues {
    background-color: #fefefe;
}

.page-contact .faq-section {
    background-color: #fff;
}

.page-contact .commitment-section {
    background: linear-gradient(to right, #000080, #3a3a9a);
    color: #fff;
    text-align: center;
    border-radius: 15px;
}

.page-contact .commitment-section .section-title, .page-contact .commitment-section .section-description {
    color: #ffffff;
}

.page-contact .commitment-section .link-in-text {
    color: #FFD700;
}

.page-contact .commitment-section .link-in-text:hover {
    color: #f0f0f0;
}

.page-contact .secondary-cta {
    background-color: #FFD700;
    color: #000080;
    border-color: #000080;
}

.page-contact .secondary-cta:hover {
    background-color: #000080;
    color: #FFD700;
    border-color: #FFD700;
}

.page-contact .section-title {
    font-size: 2.5em;
    color: #000080;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.page-contact .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-contact .section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

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

.page-contact .channel-card {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 400px; /* Ensure cards have similar height */
}

.page-contact .channel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.page-contact .channel-icon {
    width: 150px; /* Increased size for content image, not icon */
    height: 150px;
    object-fit: contain;
    margin-bottom: 25px;
    border-radius: 8px;
}

.page-contact .card-title {
    font-size: 1.8em;
    color: #000080;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-contact .card-text {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-contact .btn-channel {
    display: inline-block;
    padding: 12px 25px;
    background-color: #FFD700;
    color: #000080;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid #FFD700;
}

.page-contact .btn-channel:hover {
    background-color: #000080;
    color: #FFD700;
    border-color: #000080;
}

.page-contact .social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.page-contact .btn-social {
    display: inline-block;
    padding: 10px 20px;
    background-color: #eee;
    color: #000080;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid #ccc;
}

.page-contact .btn-social:hover {
    background-color: #000080;
    color: #FFD700;
    border-color: #FFD700;
}

.page-contact .contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fefefe;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-contact .form-group {
    margin-bottom: 20px;
}

.page-contact .form-label {
    display: block;
    font-size: 1.1em;
    color: #000080;
    margin-bottom: 8px;
    font-weight: bold;
}

.page-contact .form-input, .page-contact .form-textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    color: #333;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.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.3);
}

.page-contact .form-textarea {
    resize: vertical;
}

.page-contact .submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #000080;
    color: #FFD700;
    border: 2px solid #FFD700;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-contact .submit-button:hover {
    background-color: #FFD700;
    color: #000080;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-contact .issue-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.page-contact .issue-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #444;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-contact .issue-item strong {
    color: #000080;
    margin-right: 10px;
}

.page-contact .issue-item::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2em;
    line-height: 1;
    flex-shrink: 0;
}

/* FAQ styles */
.page-contact .faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #000080;
    font-weight: bold;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #000080;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #f9f9f9;
    color: #555;
    font-size: 1.0em;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height for content */
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-contact .main-title {
        font-size: 2.5em;
    }
    .page-contact .section-title {
        font-size: 2em;
    }
    .page-contact .tagline, .page-contact .section-description {
        font-size: 1em;
    }
    .page-contact .channel-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-contact .channel-card {
        padding: 25px;
        min-height: 380px;
    }
    .page-contact .channel-icon {
        width: 120px;
        height: 120px;
    }
    .page-contact .card-title {
        font-size: 1.5em;
    }
    .page-contact .contact-form {
        padding: 30px;
    }
    .page-contact .form-label {
        font-size: 1em;
    }
    .page-contact .form-input, .page-contact .form-textarea {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .page-contact .hero-section-contact {
        padding: 60px 15px;
    }
    .page-contact .main-title {
        font-size: 2em;
    }
    .page-contact .section-title {
        font-size: 1.8em;
    }
    .page-contact .tagline, .page-contact .section-description {
        font-size: 0.95em;
    }
    .page-contact .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-contact .introduction-support, .page-contact .contact-channels, .page-contact .contact-form-section, .page-contact .common-issues, .page-contact .faq-section, .page-contact .commitment-section {
        padding: 40px 0;
    }
    .page-contact .channel-grid {
        grid-template-columns: 1fr;
    }
    .page-contact .channel-card {
        min-height: auto;
    }
    .page-contact .channel-icon {
        width: 100px;
        height: 100px;
    }
    .page-contact .card-title {
        font-size: 1.3em;
    }
    .page-contact .btn-channel {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-contact .contact-form {
        padding: 20px;
    }
    .page-contact .submit-button {
        font-size: 1.1em;
    }
    .page-contact .issue-item {
        padding: 15px 20px;
        font-size: 0.95em;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-answer {
        padding: 15px 20px;
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-contact .main-title {
        font-size: 1.8em;
    }
    .page-contact .section-title {
        font-size: 1.5em;
    }
    .page-contact .tagline, .page-contact .section-description {
        font-size: 0.9em;
    }
    .page-contact .cta-button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
    .page-contact .channel-card {
        padding: 20px;
    }
    .page-contact .social-links {
        flex-direction: column;
        gap: 10px;
    }
    .page-contact .btn-social {
        width: 80%;
        margin: 0 auto;
    }
}