.agreement_banner {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1a2a4a 0%, #283961 50%, #3a5a8a 100%);
    position: relative;
    overflow: hidden;
}

.agreement_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.agreement_banner_content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.agreement_banner_content .brand {
    font-size: 18px;
    letter-spacing: 4px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.agreement_banner_content .title {
    font-size: 42px;
    font-weight: bold;
    letter-spacing: 6px;
}

.agreement_banner_content .subtitle {
    font-size: 14px;
    margin-top: 15px;
    opacity: 0.7;
    letter-spacing: 2px;
}

.agreement_container {
    width: 60%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 0 100px;
    color: #283961;
}

.agreement_meta {
    text-align: center;
    color: #8899aa;
    font-size: 13px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8ecf0;
}

.agreement_meta .update_date {
    margin-right: 30px;
}

.agreement_meta .effective_date {
    margin-left: 30px;
}

.agreement_section {
    margin-bottom: 40px;
}

.agreement_section h2 {
    font-size: 20px;
    color: #283961;
    margin-bottom: 18px;
    padding-left: 15px;
    border-left: 4px solid #283961;
    font-weight: bold;
}

.agreement_section h3 {
    font-size: 16px;
    color: #3a5a8a;
    margin: 20px 0 12px;
    font-weight: bold;
}

.agreement_section p {
    font-size: 14px;
    line-height: 28px;
    color: #4a5a7a;
    margin-bottom: 12px;
    text-align: justify;
}

.agreement_section ul,
.agreement_section ol {
    margin: 10px 0 15px 25px;
}

.agreement_section li {
    font-size: 14px;
    line-height: 28px;
    color: #4a5a7a;
    margin-bottom: 8px;
    text-align: justify;
}

.agreement_section .highlight {
    background: #f0f4f8;
    padding: 15px 20px;
    border-radius: 4px;
    border-left: 3px solid #283961;
    margin: 15px 0;
}

.agreement_section .highlight p {
    margin-bottom: 0;
    color: #283961;
}

.agreement_footer_note {
    margin-top: 60px;
    padding: 30px;
    background: #f7f9fc;
    border-radius: 6px;
    text-align: center;
}

.agreement_footer_note p {
    font-size: 13px;
    color: #8899aa;
    line-height: 24px;
    margin-bottom: 5px;
}

.agreement_footer_note .company_name {
    color: #283961;
    font-weight: bold;
    font-size: 14px;
}

@media (max-width: 768px) {
    .agreement_container {
        width: 90%;
        padding: 30px 0 60px;
    }
    .agreement_banner_content .title {
        font-size: 28px;
    }
    .agreement_section h2 {
        font-size: 17px;
    }
}
