.agreement-page {
    padding: 60px 0 80px;
    background: #f8f9fa;
    min-height: 60vh;
}
.agreement-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.agreement-header {
    text-align: center;
    margin-bottom: 40px;
}
.agreement-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}
.agreement-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 14px;
    color: #888;
}
.agreement-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.agreement-meta .meta-item i {
    color: #b8963e;
}
.agreement-summary {
    background: linear-gradient(135deg, #fdf8ee 0%, #fff9e8 100%);
    border-left: 4px solid #b8963e;
    padding: 20px 24px;
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}
.agreement-summary i {
    color: #b8963e;
    margin-right: 8px;
}
.agreement-body {
    background: #fff;
    padding: 40px 48px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    line-height: 1.9;
    font-size: 15px;
    color: #333;
}
.agreement-body h1, .agreement-body h2, .agreement-body h3 {
    color: #1a1a1a;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}
.agreement-body h2 { font-size: 20px; }
.agreement-body h3 { font-size: 17px; }
.agreement-body p { margin-bottom: 12px; }
.agreement-body ul, .agreement-body ol {
    margin: 10px 0 10px 20px;
}
.agreement-body li { margin-bottom: 6px; }
.agreement-body a { color: #b8963e; text-decoration: underline; }
.agreement-body a:hover { color: #9c7d2c; }
.agreement-body blockquote {
    border-left: 4px solid #b8963e;
    padding: 10px 20px;
    margin: 16px 0;
    background: #fafafa;
    color: #666;
}
.agreement-back {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.agreement-back .btn-back,
.agreement-back .btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
    text-decoration: none;
}
.agreement-back .btn-back {
    background: #b8963e;
    color: #fff;
}
.agreement-back .btn-back:hover {
    background: #9c7d2c;
    color: #fff;
}
.agreement-back .btn-contact {
    background: #fff;
    color: #b8963e;
    border: 1px solid #b8963e;
}
.agreement-back .btn-contact:hover {
    background: #b8963e;
    color: #fff;
}

@media (max-width: 768px) {
    .agreement-body {
        padding: 24px 20px;
    }
    .agreement-header h1 {
        font-size: 22px;
    }
    .agreement-meta {
        flex-direction: column;
        gap: 8px;
    }
}
