.agree-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
}

.agree-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.agree-all {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.agree-all input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.agree-all label {
    font-size: 16px;
    font-weight: 600;
    color: #18558b;
}

.agree-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.agree-box h3 {
    font-size: 18px;
    color: #18558b;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #18558b;
}

.agree-content {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.agree-content p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.agree-content ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.agree-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.agree-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.agree-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.agree-check label {
    font-size: 15px;
    color: #333;
}

.agree-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.btn-submit, .btn-cancel {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-submit {
    background: #18558b;
    color: #fff;
}

.btn-submit:hover {
    background: #134a7a;
}

.btn-cancel {
    background: #f1f1f1;
    color: #666;
}

.btn-cancel:hover {
    background: #e5e5e5;
}

@media (max-width: 768px) {
    .agree-container {
        padding: 15px;
    }
    
    .agree-title {
        font-size: 20px;
    }
    
    .agree-all {
        padding: 12px 15px;
    }
    
    .agree-all label {
        font-size: 15px;
    }
    
    .agree-box {
        padding: 15px;
    }
    
    .agree-content {
        max-height: 250px;
    }
    
    .btn-submit, .btn-cancel {
        padding: 10px 20px;
        font-size: 14px;
    }
} 