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

.page-contact__hero {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-contact__hero-content {
    max-width: 800px;
}

.page-contact__title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-contact__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold for CTA */
    color: #003366; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__cta-button:hover {
    background-color: #e6b800; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-contact__hero-image {
    max-width: 600px;
    width: 100%;
}

.page-contact__hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
}

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

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

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

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

.page-contact__method-item:hover {
    transform: translateY(-5px);
}

.page-contact__method-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-contact__method-item h3 {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-contact__method-item p {
    color: #555;
    margin-bottom: 20px;
}

.page-contact__email-link,
.page-contact__cta-button--small {
    display: inline-block;
    color: #003366;
    text-decoration: none;
    font-weight: bold;
    background-color: #FFD700;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.page-contact__email-link:hover,
.page-contact__cta-button--small:hover {
    background-color: #e6b800;
}

.page-contact__phone-number {
    font-size: 1.4em;
    font-weight: bold;
    color: #003366;
    margin-top: 10px;
}

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

.page-contact__form-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
}

.page-contact__form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

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

.page-contact__form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #003366;
}

.page-contact__form-group input[type="text"],
.page-contact__form-group input[type="email"],
.page-contact__form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

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

.page-contact__submit-button {
    background-color: #003366; /* Dark blue for submit button */
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: auto;
}

.page-contact__submit-button:hover {
    background-color: #004488; /* Slightly lighter blue on hover */
    transform: translateY(-2px);
}

.page-contact__social-media {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.page-contact__social-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
}

.page-contact__social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.page-contact__social-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__social-icon img {
    width: 30px;
    height: 30px;
    filter: invert(15%) sepia(90%) saturate(600%) hue-rotate(190deg) brightness(90%); /* Dark blue tint */
}

.page-contact__social-icon:hover {
    background-color: #FFD700;
    transform: translateY(-3px);
}

.page-contact__social-icon:hover img {
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%); /* Black on gold hover */
}

@media (max-width: 768px) {
    .page-contact__title {
        font-size: 2.5em;
    }

    .page-contact__subtitle {
        font-size: 1em;
    }

    .page-contact__section-title {
        font-size: 2em;
    }

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

    .page-contact__form {
        padding: 30px;
    }

    .page-contact__hero {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-contact__title {
        font-size: 2em;
    }

    .page-contact__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-contact__section-title {
        font-size: 1.8em;
    }

    .page-contact__form {
        padding: 20px;
    }

    .page-contact__social-icons {
        gap: 15px;
    }
}