.ast-container {
    padding: 0px;
}

/* Home Contact Section Unique Styling */
.astra-contact-section-wrapper {
    position: relative;
    width: 100%;
    min-height: 1080px;
    background-image: url('../../images/page-pexels-photo.webp');
    /* 使用您提供的背景图片路径 */
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.astra-contact-content-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    gap: 40px;
    align-items: center;
}

.astra-contact-form-section {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.astra-contact-form-section h1 {
    margin-top: 10px;
    margin-bottom: 50px;
    color: #333;
    font-weight: 400;
    font-size: 40px;
    text-align: center;

}

.astra-contact-info-section {
    flex: 1;
    padding: 30px;
    text-transform: uppercase;
}

.astra-contact-info-section h1 {
    margin-top: 10px;
    margin-bottom: 50px;
    color: #333;
    font-weight: 400;
    font-size: 50px;
}

.form-group.row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.astra-contact-form-group {
    flex: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    margin: 3px;
}

.astra-contact-form-group .contact-input {
    height: 50px;
    border-radius: 8px;
}

.astra-contact-form-description {
    width: 100%;
}

.astra-contact-form-description-input textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    min-height: 200px;
}

.contact-input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.contact-input::placeholder {
    color: #999;
    font-size: 14px;
}

.astra-contact-form-button {
    text-align: center;
    margin-top: 20px;
}

.btn-primary {
    background-color: #ffffff;
    color: #1C3A8A;
    border: 1px solid #1C3A8A;
    padding: 12px 45px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #005a87;
}

.required {
    color: red;
}

.astra-contact-info-section h4 {
    margin-top: 0;
    color: #333;
    font-weight: 400;
}

.email-line {
    margin: 20px 0 50px 0;
}

.astra-contact-info-section .email-line h4,
.astra-contact-info-section .email-line h4 a {
    color: #FF5E0D;
}

.btn-about-us {
    display: inline-block;
    background-color: #00227C;
    border: 1px solid #00227C;
    color: white;
    padding-left: 40px;
    border-radius: 30px;
    font-size: 18px;
    transition: all 0.5s ease;
    box-shadow: 0 15px 15px 0px #00217d4d;
}

.btn-about-us .fa-arrow-right {
    margin-left: 80px;
    padding: 17px;
    border-radius: 50px;
    background-color: #2885E4;
    border: 1px solid #2885E4;
    transition: all 0.5s ease;
    /* 添加过渡效果 */
}

/* 分别定义悬停状态 */
.btn-about-us:hover {
    background-color: #ffffff;
    color: #00227C;
    border: 1px solid #00227C;
}

.btn-about-us:hover .fa-arrow-right {
    background-color: #ffffff;
    color: #00227C;
    border: 1px solid #00227C;
}

/* .btn-about-us:hover {
    background-color: #005a87;
} */

/* 响应式设计：小屏幕下取消网格布局 */
@media screen and (max-width: 991px) {
    .astra-contact-content-container {
        align-items: flex-start;
        flex-direction: column-reverse;
    }

    .astra-contact-form-section {
        width: 100%;
        box-shadow: none;
        padding: 20px;
        background: hwb(0deg 100% 0% / 0%);
    }

    .form-group.row {
        flex-direction: column;
    }

    .astra-contact-section-wrapper {
        background-size: 170% auto;
        background-repeat: no-repeat;
        background-position: 93% calc(-6% - 0px);
        background-color: #ffffff;
    }

    .astra-contact-info-section h1 {
        font-size: 30px;
    }

    .astra-contact-info-section h4 {
        font-size: 14px;
    }

    .btn-about-us {
        padding-left: 30px;
        font-size: 14px;
    }

    .btn-about-us .fa-arrow-right {
        margin-left: 50px;
        padding: 12px;
    }

    .astra-contact-form-section h1 {
        font-size: 26px;
        color: #013BA6;
        margin-bottom: 20px;
    }
}